summaryrefslogtreecommitdiff
path: root/User.cs
diff options
context:
space:
mode:
authorJake Mannens <jake@asger.xyz>2023-09-18 19:34:14 +1000
committerJake Mannens <jake@asger.xyz>2023-09-18 19:34:14 +1000
commitcb8179b5e5a8d5253d063ed607205f52643410fa (patch)
treeea5ab297ba2876ba4db236ae700b03f5aba0459b /User.cs
parent604ef537e0fabfbcc3abf9d7473b22f08dc549a6 (diff)
Initial commit
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; }
-}