We can define a new class in the same project and name it Config class, and create test users, scopes, and clients to test our flow.
Scopes are the collection of claims and are mandatory to be defined, so the claims can be sent out in the response from authorization servers as part of a token. Claims are heavily used when dealing with the authorization scenario.
Scopes are modelled as resources and divided into two types, namely Identity and API. Identity scopes represent any claim, such as role, name, email, or custom claim values, whereas API scopes are used to access the protected resources, particularly APIs.
Identity scopes can be defined as follows in the Config class:
public static IEnumerable<IdentityResource> ...