10 lines
291 B
C#
10 lines
291 B
C#
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; }
|
|
} |