zeroframework/Services/Identity/ZeroFramework.IdentityServer.API/Infrastructure/Authentication/GitHub/GitHubAuthenticationConstants.cs

20 lines
674 B
C#
Raw Normal View History

2023-12-05 09:22:48 +00:00
/*
* Licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
* See https://github.com/aspnet-contrib/AspNet.Security.OAuth.Providers
* for more information concerning the license and the contributors participating to this project.
*/
namespace ZeroFramework.IdentityServer.API.Infrastructure.Authentication.GitHub;
/// <summary>
/// Contains constants specific to the <see cref="GitHubAuthenticationHandler"/>.
/// </summary>
public static class GitHubAuthenticationConstants
{
public static class Claims
{
public const string Name = "urn:github:name";
public const string Url = "urn:github:url";
}
}