using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.WeiXin { // /// 微信商品售罄 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class WxdcGoodsSellOutRequest { /// /// 微信门店 /// [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } /// /// 微信商品ID(逗号,分割) /// [JsonProperty(PropertyName = "productIds")] public string ProductIds { get; set; } } }