Microsoft.Identity.Client.OAuth2.OAuth2ResponseBase
class OAuth2ResponseBase
namespace Microsoft.Identity.Client.OAuth2
{
internal class OAuth2ResponseBase
{
public string Error { get; set; }
public string SubError { get; set; }
public string ErrorDescription { get; set; }
public string[] ErrorCodes { get; set; }
public string CorrelationId { get; set; }
public string Claims { get; set; }
public OAuth2ResponseBase();
}
}