aboutsummaryrefslogtreecommitdiff
path: root/Timeline/Services/User.cs
blob: 09a472e505f8a3f0e3951b0b10aae4e7a8330b89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace Timeline.Services
{
    public class User
    {
        public string? Username { get; set; }
        public string? Nickname { get; set; }

        #region adminsecret
        public bool? Administrator { get; set; }
        #endregion adminsecret

        #region secret
        public long? Id { get; set; }
        public string? Password { get; set; }
        public long? Version { get; set; }
        #endregion secret
    }
}