12 lines
382 B
C#
12 lines
382 B
C#
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();
|
|
}
|
|
}
|