mirror of
https://github.com/aljazceru/BTCPayServerPlugins.git
synced 2025-12-17 15:44:26 +01:00
13 lines
376 B
C#
13 lines
376 B
C#
using System.Collections.Generic;
|
|
|
|
namespace BTCPayServer.Plugins.MicroNode;
|
|
|
|
public class MicroAccount
|
|
{
|
|
public string Key { get; set; }
|
|
public long Balance { get; set; }
|
|
public long BalanceCheckpoint { get; set; }
|
|
public string MasterStoreId { get; set; }
|
|
|
|
public List<MicroTransaction> Transactions { get; set; } = new List<MicroTransaction>();
|
|
} |