You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
968 B
C#

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace JwKdsV.Entity.Common
{
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class OpenErrorEntity
{
[JsonProperty(PropertyName = "errorToken")]
public string ErrorToken { get; set; }
[JsonProperty(PropertyName = "code")]
public string Code { get; set; }
[JsonProperty(PropertyName = "message")]
public string Message { get; set; }
[JsonProperty(PropertyName = "solution")]
public string Solution { get; set; }
[JsonProperty(PropertyName = "subErrors")]
public List<OpenSubError> SubErrors { get; set; }
}
public class OpenSubError
{
[JsonProperty(PropertyName = "code")]
public string Code { get; set; }
[JsonProperty(PropertyName = "message")]
public string Message { get; set; }
}
}