summaryrefslogtreecommitdiff
path: root/Principal.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Principal.cs')
-rw-r--r--Principal.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/Principal.cs b/Principal.cs
index 3e1a607..1ac18c1 100644
--- a/Principal.cs
+++ b/Principal.cs
@@ -1,8 +1,9 @@
namespace HyperBooru;
public interface IPrincipal {
- public string Name { get; set; }
- public SecurityIdentifier Sid { get; set; }
+ public string Name { get; set; }
+ public string DisplayName { get; set; }
+ public SecurityIdentifier Sid { get; set; }
}
public interface IUser : IPrincipal {}