namespace OpenIddict.Abstractions;
///
/// Exposes a method allowing to resolve a scope store.
///
public interface IOpenIddictScopeStoreResolver
{
///
/// Returns a scope store compatible with the specified scope type or throws an
/// if no store can be built using the specified type.
///
/// The type of the Scope entity.
/// An .
IOpenIddictScopeStore Get() where TScope : class;
}