18 lines
584 B
C#
18 lines
584 B
C#
using System.ComponentModel;
|
|
|
|
namespace PolyclinicWebAppImplementer.Models
|
|
{
|
|
public class RegisterModel
|
|
{
|
|
[DisplayName("ФИО")]
|
|
public string FIO { get; set; } = string.Empty;
|
|
[DisplayName("Email")]
|
|
public string Email { get; set; } = string.Empty;
|
|
[DisplayName("Пароль")]
|
|
public string Password { get; set; } = string.Empty;
|
|
[DisplayName("Повторите пароль")]
|
|
public string ConfirmPassword { get; set; } = string.Empty;
|
|
public List<string> Errors { get; set; } = new();
|
|
}
|
|
}
|