You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
814 B
C#

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.OtherWaiMai
{
/// <summary>
/// 保存饿了么门店信息
/// </summary>
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class EleMeStoreSaveResponse
{
/// <summary>
/// 门店ID
/// </summary>
[JsonProperty(PropertyName = "storeId")]
public string StoreId { get; set; }
/// <summary>
/// 门店名称
/// </summary>
[JsonProperty(PropertyName = "storeName")]
public string StoreName { get; set; }
/// <summary>
/// 门店名称
/// </summary>
[JsonProperty(PropertyName = "no")]
public string No { get; set; }
}
}