mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2025-05-06 11:32:59 +00:00
17 lines
455 B
C#
17 lines
455 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Esiur.Security.Membership
|
|
{
|
|
public class AuthorizationResults
|
|
{
|
|
AuthorizationResultsResponse Response { get; set; }
|
|
TwoFactorAuthorizationMethod TwoFactorMethod { get; set; }
|
|
public string Clue { get; set; }
|
|
public string AppName { get; set; }
|
|
public string Code { get; set; }
|
|
public int Timeout { get; set; }
|
|
}
|
|
}
|