Boltcard integration (#5419)

* Boltcard integration

* Add API for boltcard registration
This commit is contained in:
Nicolas Dorier
2023-12-06 09:17:58 +09:00
committed by GitHub
parent b13f140b86
commit d050c8e3b2
25 changed files with 981 additions and 74 deletions

View File

@@ -0,0 +1,9 @@
namespace BTCPayServer.Models
{
public class SetupBoltcardViewModel
{
public string ReturnUrl { get; set; }
public string WebsocketPath { get; set; }
public string Command { get; set; }
}
}