10 lines
223 B
C#
10 lines
223 B
C#
|
using System.Security.Principal;
|
||
|
|
||
|
namespace BlueWest.Data;
|
||
|
|
||
|
public class IdentityContext : IIdentity
|
||
|
{
|
||
|
public string AuthenticationType { get; }
|
||
|
public bool IsAuthenticated { get; }
|
||
|
public string Name { get; }
|
||
|
}
|