add betDto and miseDto

pull/2/head
rahassou 1 year ago
parent 45d45487b2
commit 86b6e6aab3

@ -2,5 +2,11 @@
{
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