mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 14:34:23 +01:00
@@ -1,6 +1,7 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using BTCPayServer.Data;
|
||||
using BTCPayServer.Services.Invoices;
|
||||
|
||||
namespace BTCPayServer.Models.WalletViewModels
|
||||
{
|
||||
@@ -17,11 +18,17 @@ namespace BTCPayServer.Models.WalletViewModels
|
||||
public bool Positive { get; set; }
|
||||
public string Balance { get; set; }
|
||||
public HashSet<TransactionTagModel> Tags { get; set; } = new();
|
||||
public string Rate { get; set; }
|
||||
public List<string> Rates { get; set; } = new();
|
||||
public RateBook WalletRateBook { get; set; }
|
||||
public RateBook InvoiceRateBook { get; set; }
|
||||
public string InvoiceId { get; set; }
|
||||
}
|
||||
public HashSet<(string Text, string Color, string TextColor)> Labels { get; set; } = new();
|
||||
public List<TransactionViewModel> Transactions { get; set; } = new();
|
||||
public override int CurrentPageCount => Transactions.Count;
|
||||
public string CryptoCode { get; set; }
|
||||
public PendingTransaction[] PendingTransactions { get; set; }
|
||||
public List<string> Rates { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user