Files
BeReadyBackend/BeReadyBackend/DTO/RandomChallenges/GetRandomChallengeDto.cs
T
2026-04-21 10:15:09 +02:00

10 lines
292 B
C#

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