namespace BBWYB.Client.Models { public class OrderDropShippingResponse { public long Id { get; set; } public string OrderId { get; set; } public string BuyerAccount { get; set; } public decimal DeliveryFreight { get; set; } public decimal PurchaseAmount { get; set; } public string PurchaseOrderId { get; set; } public string MerchantOrderId { get; set; } public Platform? PurchasePlatform { get; set; } public string SellerAccount { get; set; } public decimal SkuAmount { get; set; } public decimal PurchaseFreight { get; set; } } }