Files
2020-04-12 20:52:03 -04:00

37 lines
781 B
C#

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