Initial commit
This commit is contained in:
22
PartSource.Services/Integrations/ShopifyClient.cs
Normal file
22
PartSource.Services/Integrations/ShopifyClient.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user