Initial commit

This commit is contained in:
2020-04-12 20:52:03 -04:00
parent e750d2848a
commit 01e7627293
249 changed files with 9733 additions and 0 deletions

View File

@@ -0,0 +1,46 @@
using Ratermania.Shopify;
using System;
namespace PartSource.Data.Shopify
{
public class ProductVariant : ShopifyEntity
{
public string Option1 { get; set; }
public long ImageId { get; set; }
public long InventoryItemId { get; set; }
public long ProductId { get; set; }
public int Position { get; set; }
public bool RequiresShipping { get; set; }
public bool Taxable { get; set; }
public Decimal CompareAtPrice { get; set; }
public Decimal Price { get; set; }
public double Grams { get; set; }
public double Weight { get; set; }
public string Barcode { get; set; }
public string Sku { get; set; }
public string Title { get; set; }
public string FulfillmentService { get; set; }
public string InventoryManagement { get; set; }
public Metafield[] Metafields { get; set; }
public string InventoryPolicy { get; set; }
public string WeightUnit { get; set; }
}
}