mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-06 01:30:53 +08:00
12 lines
256 B
C#
12 lines
256 B
C#
using System.Security.Claims;
|
|
|
|
namespace Yi.Framework.Infrastructure.CurrentUsers.Accessor
|
|
{
|
|
public interface ICurrentPrincipalAccessor
|
|
{
|
|
ClaimsPrincipal Principal { get; }
|
|
IDisposable Change(ClaimsPrincipal principal);
|
|
}
|
|
|
|
}
|