Lightning charge integration

This commit is contained in:
nicolas.dorier
2018-12-20 22:40:32 +09:00
parent d0f585df9d
commit 9c99ffae57
8 changed files with 171 additions and 8 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BTCPayServer.Models.ServerViewModels
{
public class ChargeServiceViewModel
{
public string Uri { get; set; }
public string APIToken { get; set; }
public string AuthenticatedUri { get; set; }
}
}