using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ApiTools.Core
{
///
/// 微信支付请求
///
public class WeChatPayRequest
{
///
/// 地址参数
///
public TPathParameters PathParameters { get; set; }
///
/// 查询参数
///
public TQueryParameters QueryParamters { get; set; }
///
/// 请求体参数
///
public TBodyParameters BodyParamters { get; set; }
}
public class WeChatPayResponse
{
///
/// 错误码
///
[JsonProperty("code")]
public string Code { get; set; }
///
/// 错误消息
///
[JsonProperty("message")]
public string Message { get; set; }
}
}