You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
453 B
20 lines
453 B
3 years ago
|
namespace BBWY.Client.Models
|
||
|
{
|
||
|
public class OrderDropShippingResponse
|
||
|
{
|
||
|
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 Platform? PurchasePlatform { get; set; }
|
||
|
|
||
|
public string SellerAccount { get; set; }
|
||
|
}
|
||
|
}
|