12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace HelloItQuantum.Models
- {
- public class User
- {
- public string Nickname { get; set; }
- public string Name { get; set; }
- public string Surname { get; set; }
- public int GameHotkeys { get; set; }
- public int GameCreateFriend { get; set; }
- public int GameLabyrinth { get; set; }
- }
- }
|