12 lines
392 B
C#
12 lines
392 B
C#
namespace PolyclinicWebAppSuretor.Models
|
|
{
|
|
public class RegisterModel
|
|
{
|
|
public string FIO { get; set; } = string.Empty;
|
|
public string Email { get; set; } = string.Empty;
|
|
public string Password { get; set; } = string.Empty;
|
|
public string ConfirmPassword { get; set; } = string.Empty;
|
|
public List<string> Errors { get; set; } = new();
|
|
}
|
|
}
|