blob: f4f54e3206f7d96031c770dbcd215b5a29bd4182 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
namespace I2R.Storage.Api.Statics;
public static class AppClaims
{
public const string USER_ID = "id";
public const string USERNAME = "username";
public const string USER_ROLE = "role";
}
|