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.

23 lines
500 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 MeiTuanStoreMapRelaseUrlResponse
{
/// <summary>
/// 绑定链接
/// </summary>
[JsonProperty(PropertyName = "url")]
public string Url { get; set; }
}
}