using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Central.Control.WebApi.Models.Response
{
///
///
///
public class OrderResponseDto
{
///
/// 订单id
///
public string OrderId { set; get; } = string.Empty;
///
/// 需要支付价格
///
public decimal Price { set; get; }
}
}