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

17 lines
358 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
using Newtonsoft.Json;
using Alipay.AopSdk.Core.Domain;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// KoubeiItemExtitemQueryResponse.
/// </summary>
public class KoubeiItemExtitemQueryResponse : AopResponse
{
/// <summary>
/// 商品信息
/// </summary>
[JsonProperty("extitem")]
public ExtItem Extitem { get; set; }
}
}