mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2026-06-13 22:48:42 +00:00
20 lines
542 B
C#
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; }
|
|
}
|
|
}
|