Initial commit
This commit is contained in:
49
PartSource.Entities/Shopify/ProductVariant.cs
Normal file
49
PartSource.Entities/Shopify/ProductVariant.cs
Normal file
@@ -0,0 +1,49 @@
|
||||
// Decompiled with JetBrains decompiler
|
||||
// Type: PartSource.Entities.Shopify.ProductVariant
|
||||
// Assembly: PartSource.Entities, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
|
||||
// MVID: 3EDAB3F5-83E7-4F65-906E-B40192014C57
|
||||
// Assembly location: C:\Users\Tommy\Desktop\PS temp\PartSource.Entities.dll
|
||||
|
||||
using System;
|
||||
|
||||
namespace PartSource.Entities.Shopify
|
||||
{
|
||||
public class ProductVariant : BaseShopifyModel
|
||||
{
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user