mirror of
https://github.com/aljazceru/BTCPayServerPlugins.git
synced 2025-12-17 07:34:24 +01:00
micronode
This commit is contained in:
13
Plugins/BTCPayServer.Plugins.MicroNode/MicroAccount.cs
Normal file
13
Plugins/BTCPayServer.Plugins.MicroNode/MicroAccount.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
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>();
|
||||
}
|
||||
Reference in New Issue
Block a user