You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
564 B
26 lines
564 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Senparc.Weixin.TenPayV3.Entities
|
|
{
|
|
/// <summary>
|
|
/// API 返回错误时,附带的错误信息
|
|
/// </summary>
|
|
public class ResponseErrorJsonResult
|
|
{
|
|
public string code { get; set; }
|
|
public Detail detail { get; set; }
|
|
public string message { get; set; }
|
|
}
|
|
|
|
public class Detail
|
|
{
|
|
public object location { get; set; }
|
|
public string[] value { get; set; }
|
|
}
|
|
|
|
}
|