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; } }