mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-25 15:10:00 +01:00
13 lines
317 B
C#
13 lines
317 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BTCPayServer.Models.WalletViewModels
|
|
{
|
|
public class WalletSendLedgerModel
|
|
{
|
|
public string WebsocketPath { get; set; }
|
|
public SigningContextModel SigningContext { get; set; }
|
|
}
|
|
}
|