Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayAccountExrateAllclientrateQueryResponse.cs

19 lines
460 B
C#
Raw Normal View History

2024-04-10 13:55:27 +08:00
using System.Collections.Generic;
using Newtonsoft.Json;
using Alipay.AopSdk.Core.Domain;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayAccountExrateAllclientrateQueryResponse.
/// </summary>
public class AlipayAccountExrateAllclientrateQueryResponse : AopResponse
{
/// <summary>
/// 汇率信息列表
/// </summary>
[JsonProperty("client_rate_list")]
public List<ExClientRateVO> ClientRateList { get; set; }
}
}