Created
March 3, 2019 15:45
-
-
Save explorer14/feaad6f79ffef9ec0dc28d64f1f1eba9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ProblemDetails | |
{ | |
public ProblemDetails() | |
{ | |
} | |
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "type")] | |
public string Type { get; set; } | |
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "title")] | |
public string Title { get; set; } | |
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "status")] | |
public int? Status { get; set; } | |
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "detail")] | |
public string Detail { get; set; } | |
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "instance")] | |
public string Instance { get; set; } | |
[JsonExtensionData] | |
public IDictionary<string, object> Extensions { get; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment