2022-04-12 09:55:10 +02:00
|
|
|
using System;
|
2023-03-30 19:54:11 +02:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using BTCPayServer.Models.WalletViewModels;
|
2022-04-12 09:55:10 +02:00
|
|
|
|
|
|
|
namespace BTCPayServer.Components.StoreRecentTransactions;
|
|
|
|
|
|
|
|
public class StoreRecentTransactionViewModel
|
|
|
|
{
|
|
|
|
public string Id { get; set; }
|
2023-03-13 02:12:58 +01:00
|
|
|
public string Currency { get; set; }
|
2022-04-12 09:55:10 +02:00
|
|
|
public string Balance { get; set; }
|
|
|
|
public bool Positive { get; set; }
|
|
|
|
public bool IsConfirmed { get; set; }
|
|
|
|
public string Link { get; set; }
|
|
|
|
public DateTimeOffset Timestamp { get; set; }
|
2023-03-30 19:54:11 +02:00
|
|
|
public IEnumerable<TransactionTagModel> Labels { get; set; }
|
2022-04-12 09:55:10 +02:00
|
|
|
}
|