using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// SkuPropertyValue Data Structure.
///
[Serializable]
public class SkuPropertyValue : AopObject
{
///
/// 外部sku属性值ID,由外部商户定义
///
[JsonProperty("out_pv_id")]
public string OutPvId { get; set; }
///
/// 外部商户sku属性值
///
[JsonProperty("value")]
public string Value { get; set; }
}
}