8 lines
251 B
C#
8 lines
251 B
C#
|
|
namespace TimetableDesigner.Backend.Services.Authentication.DTO;
|
|||
|
|
|
|||
|
|
public class AuthenticatePasswordRequest
|
|||
|
|
{
|
|||
|
|
public string Email { get; set; } = null!;
|
|||
|
|
public string Password { get; set; } = null!;
|
|||
|
|
public bool RememberMe { get; set; }
|
|||
|
|
}
|