blob: 86437d41af7890c41f40eb395b1c50ef24fcc4a5 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
namespace IOL.BookmarkThing.Server.StaticData;
public static class AppClaims
{
public const string GITHUB_ID = "gh_id";
public const string USER_ID = "user_id";
public const string NAME = "name";
}
|