14 lines
397 B
C#
14 lines
397 B
C#
namespace Atomx.Common.Constants
|
|
{
|
|
public static class ClaimKeys
|
|
{
|
|
public const string Id = "id";
|
|
public const string CorporationId = "cid";
|
|
public const string Name = "name";
|
|
public const string Email = "email";
|
|
public const string Mobile = "mobile";
|
|
public const string Role = "r";
|
|
public const string Permission = "p";
|
|
}
|
|
}
|