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 | aa3faef40e6ea79685cf08aeb5ae5ba744bf2437 (patch) | |
tree | 40836b5dc6a6f6c617c2ccb394b144299fce2155 /BackEnd/Timeline/Models/Http/UserInfo.cs | |
parent | 6897dbd6aec8ffebdad9622e1242fb24415fe89e (diff) | |
download | timeline-aa3faef40e6ea79685cf08aeb5ae5ba744bf2437.tar.gz timeline-aa3faef40e6ea79685cf08aeb5ae5ba744bf2437.tar.bz2 timeline-aa3faef40e6ea79685cf08aeb5ae5ba744bf2437.zip |
feat: Remove administrator field from user.
Diffstat (limited to 'BackEnd/Timeline/Models/Http/UserInfo.cs')
-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.
|