using System.Collections.Generic; namespace OAuth.AspNet.AuthServer { /// /// Data object used by TokenEndpointRequest when the "grant_type" is "client_credentials". /// public class TokenEndpointRequestClientCredentials { /// /// The value passed to the Token endpoint in the "scope" parameter /// [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly", Justification = "This class is just for passing data through.")] public IList Scope { get; set; } } }