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,36 @@
using Ratermania.Shopify;
using System;
namespace PartSource.Data.Shopify
{
public class Product : ShopifyEntity
{
public string BodyHtml { get; set; }
public string Handle { get; set; }
public string MetafieldsGlobalTitleTag { get; set; }
public string MetafieldsGlobalDescriptionTag { get; set; }
public string ProductType { get; set; }
public string Tags { get; set; }
public string TemplateSuffix { get; set; }
public string Title { get; set; }
public string Vendor { get; set; }
public bool Published { get; set; }
public DateTime? PublishedAt { get; set; }
public ProductImage[] Images { get; set; }
public ProductVariant[] Variants { get; set; }
public PartSource.Data.Shopify.PublishedScope? PublishedScope { get; set; }
}
}