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.
22 lines
1015 B
22 lines
1015 B
namespace BBWY.Client.Models
|
|
{
|
|
public class OrderDropShipping : NotifyObject
|
|
{
|
|
public string OrderId { get; set; }
|
|
public string BuyerAccount { get => buyerAccount; set { Set(ref buyerAccount, value); } }
|
|
public string SellerAccount { get => sellerAccount; set { Set(ref sellerAccount, value); } }
|
|
public decimal DeliveryFreight { get => deliveryFreight; set { Set(ref deliveryFreight, value); } }
|
|
public string PurchaseOrderId { get => purchaseOrderId; set { Set(ref purchaseOrderId, value); } }
|
|
public Platform PurchasePlatform { get => purchasePlatform; set { Set(ref purchasePlatform, value); } }
|
|
public decimal PurchaseAmount { get => purchaseAmount; set { Set(ref purchaseAmount, value); } }
|
|
|
|
private string buyerAccount;
|
|
private string sellerAccount;
|
|
private decimal deliveryFreight;
|
|
private string purchaseOrderId;
|
|
private Platform purchasePlatform;
|
|
private decimal purchaseAmount;
|
|
|
|
|
|
}
|
|
}
|
|
|