mirror of
https://github.com/aljazceru/BTCPayServerPlugins.git
synced 2025-12-17 07:34:24 +01:00
12 lines
316 B
C#
12 lines
316 B
C#
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;
|
|
}
|