mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-06-03 05:34:23 -04: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; }
|
|
}
|
|
} |