mirror of
https://github.com/hmaxnl/SharpRSS.git
synced 2024-11-09 23:44:20 +01:00
10 lines
349 B
C#
10 lines
349 B
C#
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;
|
|
} |