Files
Partsource/PartSource.Data/Shopify/ProductImage.cs
2020-04-12 20:52:03 -04:00

22 lines
424 B
C#

using Ratermania.Shopify;
namespace PartSource.Data.Shopify
{
public class ProductImage : ShopifyEntity
{
public int Height { get; set; }
public int Position { get; set; }
public int Width { get; set; }
public long ProductId { get; set; }
public long[] VariantIds { get; set; }
public string Src { get; set; }
public string Alt { get; set; }
}
}