implement a bunch more routes and functionality

This commit is contained in:
Elijah R
2024-04-05 08:25:18 -04:00
parent 16acd9b772
commit d8ba680d34
19 changed files with 736 additions and 18 deletions

View File

@@ -1,3 +1,5 @@
using System.Net;
namespace Computernewb.CollabVMAuthServer;
public class User
@@ -10,6 +12,7 @@ public class User
public string EmailVerificationCode { get; set; }
public Rank Rank { get; set; }
public bool Banned { get; set; }
public IPAddress RegistrationIP { get; set; }
}
public enum Rank : uint