diff options
author | crupest <crupest@outlook.com> | 2020-11-20 21:05:50 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-11-20 21:05:50 +0800 |
commit | 8a1f0ea162880b7a702a7ee62aa572bff936ca59 (patch) | |
tree | 9f8c381acf7487e6b845322b541b514403255e21 /BackEnd/Timeline/Models/Http | |
parent | 2f25170d1fb55bda8d832f9834506fcc9e2cc3e4 (diff) | |
download | timeline-8a1f0ea162880b7a702a7ee62aa572bff936ca59.tar.gz timeline-8a1f0ea162880b7a702a7ee62aa572bff936ca59.tar.bz2 timeline-8a1f0ea162880b7a702a7ee62aa572bff936ca59.zip |
feat: Remove administrator field from user.
Diffstat (limited to 'BackEnd/Timeline/Models/Http')
-rw-r--r-- | BackEnd/Timeline/Models/Http/UserInfo.cs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/BackEnd/Timeline/Models/Http/UserInfo.cs b/BackEnd/Timeline/Models/Http/UserInfo.cs index 26b04e90..0f865172 100644 --- a/BackEnd/Timeline/Models/Http/UserInfo.cs +++ b/BackEnd/Timeline/Models/Http/UserInfo.cs @@ -25,10 +25,6 @@ namespace Timeline.Models.Http /// Nickname.
/// </summary>
public string Nickname { get; set; } = default!;
- /// <summary>
- /// True if the user is a administrator.
- /// </summary>
- public bool? Administrator { get; set; } = default!;
#pragma warning disable CA2227 // Collection properties should be read only
/// <summary>
/// The permissions of the user.
|