mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 22:25:28 +01:00
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; }
|
||
|
}
|
||
|
}
|