PIbd-21_CourseWork_Polyclin.../Polyclinic/PolyclinicWebAppImplementer/Models/RegisterModel.cs

12 lines
382 B
C#
Raw Normal View History

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;
public List<string> Errors = new();
}
}