add betDto and miseDto #2

Merged
rayhan.hassou merged 1 commits from WORK_RHA into master 2 years ago

@ -2,5 +2,11 @@
{ {
public class BetDTO public class BetDTO
{ {
public string Name { get; set; }
public string Title { get; set; }
public List<string> Choices { get; set; }
public string Themes{ get; set; }
public Dictionary<UserDTO, MiseDTO>? Bets { get; set; }
} }
} }

@ -0,0 +1,8 @@
namespace AllInApi.DTO
{
public class MiseDTO
{
public int Cost { get; set; }
public int Choices { get; set; }
}
}
Loading…
Cancel
Save