Attempted to clean up the AuthController just a tad.

This commit is contained in:
2021-01-14 15:48:52 -06:00
parent 6f8b7af78e
commit 8e9824f497
3 changed files with 26 additions and 18 deletions
+18
View File
@@ -0,0 +1,18 @@
namespace SecureCore.Services
{
public class UserInformation
{
public struct LoginData
{
public string Username;
public string Password;
}
public struct RegistrationData
{
public string Username;
public string Password;
public string Email;
}
}
}