mirror of
				https://github.com/esiur/esiur-dotnet.git
				synced 2025-11-04 09:21:35 +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; }
 | 
						|
    }
 | 
						|
}
 |