8 lines
203 B
C#
8 lines
203 B
C#
namespace Application.Endpoints.Authorization;
|
|
|
|
public class UserLoginModel
|
|
{
|
|
public string? UserType { get; set; }
|
|
public string Email { get; set; }
|
|
public string Password { get; set; }
|
|
} |