You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
756 B
C#

2 months ago
using LinqToDB.Mapping;
namespace TradeUsedSale.Repositories.Models
{
public class DT_ShopifyUsedSaleOrderItem
{
[PrimaryKey, Identity] public int Id { get; set; }
public int DtShopifyUsedSaleOrderId { get; set; }
public string OriginSku { get; set; }
public string Sku { get; set; }
public string ProductCode { get; set; }
public int Quantity { get; set; }
public decimal Price { get; set; }
public string Title { get; set; }
public string VariantTitle { get; set; }
public string ProductId { get; set; }
public string VariantId { get; set; }
public string Image { get; set; }
public string ShippingMethod { get; set; }
}
}