CodeLiturgy.Dashboard/BlueWest.Api/Identity/IdentityContext.cs

10 lines
223 B
C#
Raw Normal View History

2022-08-19 19:47:35 +03:00
using System.Security.Principal;
namespace BlueWest.Data;
public class IdentityContext : IIdentity
{
public string AuthenticationType { get; }
public bool IsAuthenticated { get; }
public string Name { get; }
}