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