start refactor to use btcpayserver directly

This commit is contained in:
Kukks
2023-01-19 14:44:12 +01:00
parent 07952a4d44
commit 5ca18c5dc8
18 changed files with 552 additions and 427 deletions

View File

@@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using BTCPayServer.Models;
namespace BTCPayServer.Plugins.Wabisabi;
public class CoinjoinsViewModel : BasePagingViewModel
{
public List<BTCPayWallet.CoinjoinData> Coinjoins { get; set; } = new();
public override int CurrentPageCount => Coinjoins.Count;
}