mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 14:40:36 +01:00
14 lines
367 B
C#
14 lines
367 B
C#
|
using System;
|
||
|
|
||
|
namespace BTCPayServer.Components.StoreRecentTransactions;
|
||
|
|
||
|
public class StoreRecentTransactionViewModel
|
||
|
{
|
||
|
public string Id { get; set; }
|
||
|
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; }
|
||
|
}
|