namespace IOL.GreatOffice.Api.Endpoints.Internal.Account;
///
/// Payload for logging in a user.
///
public class LoginPayload
{
///
/// Username of the user's account.
///
public string Username { get; set; }
///
/// Password of the user's account.
///
public string Password { get; set; }
///
/// Specify that the created session should be long lived and continually refreshed.
///
public bool Persist { get; set; }
}