Importing UI for registering and verifying Shopify credentials

This commit is contained in:
rockstardev
2020-09-13 17:12:42 -05:00
committed by Kukks
parent cf99f0fca0
commit 8a68e1b49d
5 changed files with 230 additions and 12 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static BTCPayServer.Data.StoreBlob;
namespace BTCPayServer.Models.StoreViewModels
{
public class IntegrationsViewModel
{
public ShopifyDataHolder Shopify { get; set; }
}
}