namespace Kyoo.Authentication.Models.DTO
{
	/// 
	/// A model to represent an otac request
	/// 
	public class OtacRequest
	{
		/// 
		/// The One Time Access Code
		/// 
		public string Otac { get; set; }
		
		/// 
		/// Should the user stay logged
		/// 
		public bool StayLoggedIn { get; set; }
	}
}