23 lines
582 B
C#
23 lines
582 B
C#
using PartSource.Data.Shopify;
|
|
using Ratermania.Shopify;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace PartSource.Services.Integrations
|
|
{
|
|
public class ShopifyClient : BaseShopifyClient
|
|
{
|
|
public ShopifyClient(ShopifyOptionsBuilder optionsBuilder) : base(optionsBuilder) { }
|
|
|
|
public ShopifyResource<Product> Products { get; set; }
|
|
|
|
public ShopifyResource<Metafield> Metafields { get; set; }
|
|
|
|
//public ShopifyResource<SmartCollection> SmartCollections { get; set; }
|
|
|
|
public ShopifyResource<ProductImage> ProductImages { get; set; }
|
|
}
|
|
}
|
|
|