Merge pull request 'add betDto and miseDto' (#2) from WORK_RHA into master

Reviewed-on: #2
pull/4/head
Rayhân HASSOU 2 years ago
commit 94d5abb84f

@ -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