14 lines
416 B
C#
14 lines
416 B
C#
namespace Learn.Archives.Core.Common
|
|
{
|
|
public class ClaimEnum
|
|
{
|
|
public static string TenantId => "tenant";
|
|
public static string PositionId => "position";
|
|
public static string UserId => "user";
|
|
public static string Id => "id";
|
|
public static string Role => "roleid";
|
|
public static string Scope => "scope";
|
|
public static string Name => "name";
|
|
}
|
|
}
|