initial coinswitch work

This commit is contained in:
Kukks
2018-12-11 12:47:38 +01:00
parent 94be2b46d5
commit c00c95efcf
13 changed files with 419 additions and 36 deletions

View File

@@ -0,0 +1,12 @@
using BTCPayServer.Payments.CoinSwitch;
namespace BTCPayServer.Models.StoreViewModels
{
public class UpdateCoinSwitchSettingsViewModel
{
public string MerchantId { get; set; }
public bool Enabled { get; set; }
public string StatusMessage { get; set; }
}
}