15 lines
470 B
C#
15 lines
470 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 UserCenterRole => "role";
|
|
public static string Role => "role1";
|
|
public static string Scope => "scope";
|
|
public static string Name => "name";
|
|
}
|
|
}
|