2024-05-29 02:22:44 +04:00
|
|
|
|
namespace PolyclinicWebAppImplementer.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;
|
2024-05-29 02:40:15 +04:00
|
|
|
|
public List<string> Errors { get; set; } = new();
|
2024-05-29 02:22:44 +04:00
|
|
|
|
}
|
|
|
|
|
}
|