Compare commits
No commits in common. "4ac7886a741dda22ea5403aa74c53666a614321a" and "1c6afcfa2bb1666e6d43d4a742ced5ed81409a8b" have entirely different histories.
4ac7886a74
...
1c6afcfa2b
@ -6,6 +6,6 @@
|
|||||||
public string Email { get; set; } = string.Empty;
|
public string Email { get; set; } = string.Empty;
|
||||||
public string Password { get; set; } = string.Empty;
|
public string Password { get; set; } = string.Empty;
|
||||||
public string ConfirmPassword { get; set; } = string.Empty;
|
public string ConfirmPassword { get; set; } = string.Empty;
|
||||||
public List<string> Errors { get; set; } = new();
|
public List<string> Errors = new();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -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();
|
|
||||||
}
|
|
||||||
}
|
|
@ -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();
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user