diff --git a/Project.Controller/AppController.cs b/Project.Controller/AppController.cs index 3620251..c656947 100644 --- a/Project.Controller/AppController.cs +++ b/Project.Controller/AppController.cs @@ -7,7 +7,7 @@ public class AppController public static void NewLoginSave(string username, string password, string email) { string hashedPassword = ShaHash.HashPassword(password); - var user = new Model.NewUser(username, hashedPassword, email); + var user = new NewUser(username, hashedPassword, email); SQLite.SaveUser(user); } } diff --git a/Project.Model/Validation.cs b/Project.Model/Validation.cs new file mode 100644 index 0000000..0b00b14 --- /dev/null +++ b/Project.Model/Validation.cs @@ -0,0 +1,6 @@ +namespace Project.Model; + +public class Validation +{ + +} \ No newline at end of file