2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2026-06-13 14:38:43 +00:00
Files
esiur-dotnet/Libraries/Esiur/Security/Authority/AuthenticationContext.cs
T
2026-05-24 18:27:22 +03:00

20 lines
542 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Esiur.Security.Authority
{
public class AuthenticationContext
{
public AuthenticationDirection Direction { get; set; }
public AuthenticationMode Mode { get; set; }
public string Domain { get; set; }
public string? InitiatorIdentity { get; set; }
public string? ResponderIdentity { get; set; }
public AuthenticationMaterial[] Materials { get; set; }
public string? HostName { get; set; }
}
}