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.

29 lines
715 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Newtonsoft.Json;
namespace POSV.Dianping
{
/// <summary>
/// 券状态查询,通过该接口可获取到团购券的基本信息。
/// </summary>
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class CouponStatusQueryRequest
{
/// <summary>
/// 券码
/// </summary>
[JsonProperty(PropertyName = "couponCode")]
public string CouponCode { get; set; }
/// <summary>
/// 厂商门店id
/// </summary>
[JsonProperty(PropertyName = "vendorShopId")]
public string VendorShopId { get; set; }
}
}