blob: 3d0b2f1aed0a23d7dbfe5295ad6c593be8f59fb4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
using System;
namespace Timeline.Models
{
public class User
{
public string? UniqueId { get; set; }
public string? Username { get; set; }
public string? Nickname { get; set; }
public bool? Administrator { get; set; }
#region secret
public long? Id { get; set; }
public string? Password { get; set; }
public long? Version { get; set; }
public DateTimeOffset? UsernameChangeTime { get; set; }
public DateTimeOffset? CreateTime { get; set; }
public DateTimeOffset? LastModified { get; set; }
#endregion secret
}
}
|