// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using IdentityServer4.Models;
namespace Microsoft.AspNetCore.ApiAuthorization.IdentityServer
{
///
/// Constants used for storing information about application profiles in the or
/// of a or respectively.
///
public static class ApplicationProfilesPropertyNames
{
///
/// Key to the Profile on or .
/// The Profile value will be one of the constants in .
///
public const string Profile = nameof(Profile);
///
/// Key to the Source on or .
/// The Source value will be Configuration if present.
///
public const string Source = nameof(Source);
///
/// Key to the Clients on .
/// The Clients value will be * to indicate that all clients are allowed to access this resource or a space separated list of
/// the client ids that are allowed to access this resource.
///
public const string Clients = nameof(Clients);
}
}