Refactoring: Remove StoreData object from view models (#6363)

This commit is contained in:
d11n
2024-11-07 00:58:47 +01:00
committed by GitHub
parent 641bdcff31
commit 392ec623c0
26 changed files with 120 additions and 138 deletions

View File

@@ -1,11 +1,10 @@
using System.Collections.Generic;
using BTCPayServer.Data;
namespace BTCPayServer.Components.StoreRecentTransactions;
public class StoreRecentTransactionsViewModel
{
public StoreData Store { get; set; }
public string StoreId { get; set; }
public IList<StoreRecentTransactionViewModel> Transactions { get; set; } = new List<StoreRecentTransactionViewModel>();
public WalletId WalletId { get; set; }
public bool InitialRendering { get; set; }