Initial commit
This commit is contained in:
36
PartSource.Data/Shopify/Product.cs
Normal file
36
PartSource.Data/Shopify/Product.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user