Reorganized folder structure

This commit is contained in:
2024-09-26 10:20:30 +02:00
parent af7385678f
commit 27088f8217
92 changed files with 16 additions and 31 deletions

View File

@@ -0,0 +1,6 @@
namespace HopFrame.Security.Models;
public class UserLogin {
public string Email { get; set; }
public string Password { get; set; }
}

View File

@@ -0,0 +1,7 @@
namespace HopFrame.Security.Models;
public class UserRegister {
public string Username { get; set; }
public string Email { get; set; }
public string Password { get; set; }
}