10 lines
259 B
C#
10 lines
259 B
C#
namespace WebDesktopBackend.Security
|
|
{
|
|
public interface ITokenContext {
|
|
bool IsAuthenticated {get;}
|
|
string UserId {get;}
|
|
string AccessTokenId {get;}
|
|
string RefreshTokenId {get;}
|
|
string[] Permissions { get; }
|
|
}
|
|
} |