mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-04-20 04:28:12 +02:00
10 lines
348 B
C#
10 lines
348 B
C#
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;
|
|
} |