8 lines
233 B
C#
8 lines
233 B
C#
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;
|
|
} |