SharpRSS/SharpRSS.Data/Domains/Auth/RegisterModel.cs

10 lines
349 B
C#
Raw Normal View History

namespace SharpRSS.Data.Domains.Auth;
public class RegisterModel
{
public string UserName { 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;
public string Email { get; set; } = string.Empty;
}