2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2025-05-06 11:32:59 +00:00
esiur-dotnet/Esiur/Security/Membership/AuthorizationResults.cs
2024-03-18 22:23:09 +03:00

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; }
}
}