1234567891011121314151617181920 |
- namespace MafiaTelegramBot.DataBase
- {
- public class User
- {
- public long Id { get; set; } = 0;
- public string Username { get; set; } = "test";
- public int Games { get; set; } = 0;
- public int Wins { get; set; } = 0;
- public int MafiaGames { get; set; } = 0;
- public int MafiaWins { get; set; } = 0;
- public int VillagerGames { get; set; } = 0;
- public int VillagerWins { get; set; } = 0;
- public int DonGames { get; set; } = 0;
- public int DonWins { get; set; } = 0;
- public int GovernorGames { get; set; } = 0;
- public int GovernorWins { get; set; } = 0;
- public int DoctorGames { get; set; } = 0;
- public int DoctorWins { get; set; } = 0;
- }
- }
|