DotBased/DotBased.ASP.Auth/Domains/RegisterModel.cs

10 lines
348 B
C#
Raw Permalink Normal View History

2024-07-07 17:41:54 +02:00
namespace DotBased.ASP.Auth.Domains;
public class RegisterModel
{
public string UserName { get; set; } = string.Empty;
public string Email { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
public string Name { get; set; } = string.Empty;
public string FamilyName { get; set; } = string.Empty;
}