DotBased/DotBased.ASP.Auth/Domains/LoginModel.cs
2024-07-07 17:41:54 +02:00

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;
}