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 Errors { get; set; } = new(); } }