22 lines
424 B
C#
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; }
|
|
}
|
|
}
|