17 lines
358 B
C#
17 lines
358 B
C#
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; }
|
|
}
|
|
} |