namespace StellaOps.Authority.Plugins.Abstractions; /// /// Well-known metadata keys persisted with Authority client registrations. /// public static class AuthorityClientMetadataKeys { public const string AllowedGrantTypes = "allowedGrantTypes"; public const string AllowedScopes = "allowedScopes"; public const string RedirectUris = "redirectUris"; public const string PostLogoutRedirectUris = "postLogoutRedirectUris"; }