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