using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// WelfareEcoStoreInfo Data Structure. /// [Serializable] public class WelfareEcoStoreInfo : AopObject { /// /// 门店具体位置(中文) /// [JsonProperty("address")] public string Address { get; set; } /// /// 品牌 /// [JsonProperty("brand")] public string Brand { get; set; } /// /// 门店编号 /// [JsonProperty("code")] public string Code { get; set; } /// /// 门店名称 /// [JsonProperty("name")] public string Name { get; set; } } }