Files
FACULTATE-HEALTHCARE_MANAGER/backend/Application/Endpoints/Authorization/UserLoginDto.cs
T

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; }
}