mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-02-15 11:14:24 +01:00
19 lines
582 B
C#
19 lines
582 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BTCPayServer.Views.Wallets
|
|
{
|
|
public class AtomicSwapEscrowViewModel
|
|
{
|
|
public string ToSend { get; set; }
|
|
public string ToReceive { get; internal set; }
|
|
public string SentToWalletId { get; set; }
|
|
public Controllers.WalletsController.RefundTime RefundTime { get; set; }
|
|
public string SentFromWalletId { get; set; }
|
|
public string EscrowAddress { get; internal set; }
|
|
public string Amount { get; set; }
|
|
}
|
|
}
|