btcpayserver/BTCPayServer/Models/SetupBoltcardViewModel.cs
Nicolas Dorier d050c8e3b2
Boltcard integration (#5419)
* Boltcard integration

* Add API for boltcard registration
2023-12-06 09:17:58 +09:00

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; }
}
}