using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 门店信息 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class WeiXinShopInfoRequest { /// /// 门店ID /// [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } } }