mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
d050c8e3b2
* Boltcard integration * Add API for boltcard registration
10 lines
226 B
C#
10 lines
226 B
C#
namespace BTCPayServer.Models
|
|
{
|
|
public class SetupBoltcardViewModel
|
|
{
|
|
public string ReturnUrl { get; set; }
|
|
public string WebsocketPath { get; set; }
|
|
public string Command { get; set; }
|
|
}
|
|
}
|