Implementing ASP auth module
This commit is contained in:
8
DotBased.ASP.Auth/Domains/LoginModel.cs
Normal file
8
DotBased.ASP.Auth/Domains/LoginModel.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace DotBased.ASP.Auth.Domains;
|
||||
|
||||
public class LoginModel
|
||||
{
|
||||
public string UserName { get; set; } = string.Empty;
|
||||
public string Email { get; set; } = string.Empty;
|
||||
public string Password { get; set; } = string.Empty;
|
||||
}
|
Reference in New Issue
Block a user