Compare commits

..

No commits in common. "4ac7886a741dda22ea5403aa74c53666a614321a" and "1c6afcfa2bb1666e6d43d4a742ced5ed81409a8b" have entirely different histories.

3 changed files with 1 additions and 21 deletions

View File

@ -6,6 +6,6 @@
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 { get; set; } = new();
public List<string> Errors = new();
}
}

View File

@ -1,9 +0,0 @@
namespace PolyclinicWebAppSuretor.Models
{
public class LoginModel
{
public string Email { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
public List<string> Errors { get; set; } = new();
}
}

View File

@ -1,11 +0,0 @@
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<string> Errors { get; set; } = new();
}
}