namespace Kyoo.Authentication.Models.DTO
{
	/// 
	/// A model only used on login requests.
	/// 
	public class LoginRequest
	{
		/// 
		/// The user's username.
		/// 
		public string Username { get; set; }
		
		/// 
		/// The user's password.
		/// 
		public string Password { get; set; }
		
		/// 
		/// Should the user stay logged in? If true a cookie will be put.
		/// 
		public bool StayLoggedIn { get; set; }
		
		/// 
		/// The return url of the login flow.
		/// 
		public string ReturnURL { get; set; }
	}
}