diff options
author | crupest <crupest@outlook.com> | 2020-01-29 23:13:15 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-01-29 23:13:15 +0800 |
commit | dd0097af5c4ccbe25a1faca2286d729c93fd4116 (patch) | |
tree | c9131a7b95fffd64bf2c26527d7f62fbdefa7e2c /Timeline/Models/User.cs | |
parent | 401a0c86054711bf5ebdce7d7717c9b59bffc2fa (diff) | |
download | timeline-dd0097af5c4ccbe25a1faca2286d729c93fd4116.tar.gz timeline-dd0097af5c4ccbe25a1faca2286d729c93fd4116.tar.bz2 timeline-dd0097af5c4ccbe25a1faca2286d729c93fd4116.zip |
...
Diffstat (limited to 'Timeline/Models/User.cs')
-rw-r--r-- | Timeline/Models/User.cs | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/Timeline/Models/User.cs b/Timeline/Models/User.cs deleted file mode 100644 index 2cead892..00000000 --- a/Timeline/Models/User.cs +++ /dev/null @@ -1,20 +0,0 @@ -using Timeline.Models.Validation;
-
-namespace Timeline.Models
-{
- public class User
- {
- [Username]
- public string? Username { get; set; }
- public bool? Administrator { get; set; }
- public string? Nickname { get; set; }
- public string? AvatarUrl { get; set; }
-
-
- #region secret
- public long? Id { get; set; }
- public string? Password { get; set; }
- public long? Version { get; set; }
- #endregion secret
- }
-}
|