summaryrefslogtreecommitdiff
path: root/User.cs
diff options
context:
space:
mode:
Diffstat (limited to 'User.cs')
-rw-r--r--User.cs9
1 files changed, 0 insertions, 9 deletions
diff --git a/User.cs b/User.cs
deleted file mode 100644
index 61ef03f..0000000
--- a/User.cs
+++ /dev/null
@@ -1,9 +0,0 @@
-using Microsoft.EntityFrameworkCore;
-
-namespace HyperBooru;
-
-[Index(nameof(Username))]
-public class User : HBObject {
- public string Username { get; set; }
- public string PasswordHash { get; set; }
-}