Compare commits
2 Commits
1c6afcfa2b
...
4ac7886a74
Author | SHA1 | Date | |
---|---|---|---|
4ac7886a74 | |||
79f512bb16 |
@ -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 = new();
|
||||
public List<string> Errors { get; set; } = new();
|
||||
}
|
||||
}
|
||||
|
9
Polyclinic/PolyclinicWebAppSuretor/Models/LoginModel.cs
Normal file
9
Polyclinic/PolyclinicWebAppSuretor/Models/LoginModel.cs
Normal file
@ -0,0 +1,9 @@
|
||||
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();
|
||||
}
|
||||
}
|
11
Polyclinic/PolyclinicWebAppSuretor/Models/RegisterModel.cs
Normal file
11
Polyclinic/PolyclinicWebAppSuretor/Models/RegisterModel.cs
Normal file
@ -0,0 +1,11 @@
|
||||
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