DSInternals/Src/DSInternals.Common/AzureAD/OdataErrorResponse.cs

21 lines
405 B
C#

using System;
using Newtonsoft.Json;
namespace DSInternals.Common.AzureAD
{
public class OdataErrorResponse
{
[JsonProperty("odata.error", Required = Required.Always)]
public ODataError Error
{
get;
private set;
}
public Exception GetException()
{
return new GraphApiException(this.Error);
}
}
}