User.cs 752 B

1234567891011121314151617181920
  1. namespace MafiaTelegramBot.DataBase
  2. {
  3. public class User
  4. {
  5. public long Id { get; set; } = 0;
  6. public string Username { get; set; } = "test";
  7. public int Games { get; set; } = 0;
  8. public int Wins { get; set; } = 0;
  9. public int MafiaGames { get; set; } = 0;
  10. public int MafiaWins { get; set; } = 0;
  11. public int VillagerGames { get; set; } = 0;
  12. public int VillagerWins { get; set; } = 0;
  13. public int DonGames { get; set; } = 0;
  14. public int DonWins { get; set; } = 0;
  15. public int GovernorGames { get; set; } = 0;
  16. public int GovernorWins { get; set; } = 0;
  17. public int DoctorGames { get; set; } = 0;
  18. public int DoctorWins { get; set; } = 0;
  19. }
  20. }