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.

28 lines
525 B
C#

9 months ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Newtonsoft.Json;
using POSV.OtherWaiMai;
namespace POSV.Card
{
/// <summary>
/// 外卖订单列表
/// </summary>
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class BaiDuOrderHandleResponse
{
/// <summary>
/// 订单体
/// </summary>
[JsonProperty(PropertyName = "body")]
public BaiduOrderBodyData OrderBody { get; set; }
}
}