micronode

This commit is contained in:
Kukks
2024-01-17 09:07:18 +01:00
parent d27a31ee8e
commit cfcaa17e94
24 changed files with 2388 additions and 11 deletions

View 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>();
}