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