mirror of
				https://github.com/zoriya/Kyoo.git
				synced 2025-11-03 19:17:16 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			359 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			359 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace Kyoo.Authentication.Models.DTO
 | 
						|
{
 | 
						|
	/// <summary>
 | 
						|
	/// A model to represent an otac request
 | 
						|
	/// </summary>
 | 
						|
	public class OtacRequest
 | 
						|
	{
 | 
						|
		/// <summary>
 | 
						|
		/// The One Time Access Code
 | 
						|
		/// </summary>
 | 
						|
		public string Otac { get; set; }
 | 
						|
		
 | 
						|
		/// <summary>
 | 
						|
		/// Should the user stay logged
 | 
						|
		/// </summary>
 | 
						|
		public bool StayLoggedIn { get; set; }
 | 
						|
	}
 | 
						|
} |