29 lines
753 B
C#
29 lines
753 B
C#
using Newtonsoft.Json;
|
|
using AyaNova.Biz;
|
|
|
|
namespace AyaNova.Api.ControllerHelpers
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
/// Detail error for inner part of error response
|
|
/// </summary>
|
|
public class ApiDetailError
|
|
{
|
|
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
|
|
public string Code { get; internal set; }
|
|
|
|
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
|
|
public string Message { get; internal set; }
|
|
|
|
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
|
|
public string Target { get; internal set; }
|
|
|
|
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
|
|
public string Error { get; internal set; }
|
|
|
|
|
|
}//eoc
|
|
|
|
|
|
}//eons |