namespace BeReadyBackend.DTO.RandomChallenges; public class GetRandomChallengeDto { public int Id { get; set; } public string? Libelle { get; set; } public int Duration { get; set; } public bool IsAlreadyPast { get; set; } public DateTime? GeneratedAt { get; set; } }