12 lines
284 B
C#
12 lines
284 B
C#
namespace WatchIt.DTO.Models.Controllers.Authentication;
|
|
|
|
public class AuthenticationRequest
|
|
{
|
|
#region PROPERTIES
|
|
|
|
public string UsernameOrEmail { get; set; } = null!;
|
|
public string Password { get; set; } = null!;
|
|
public bool RememberMe { get; set; }
|
|
|
|
#endregion
|
|
} |