Added endpoints to generate challenges

This commit is contained in:
2026-03-11 22:04:21 +01:00
parent c1735c6369
commit 461a3b759e
13 changed files with 233 additions and 16 deletions
@@ -0,0 +1,9 @@
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; }
}