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,21 @@
using System.Collections.Generic;
namespace BTCPayServer.Plugins.MicroNode;
public class MicroTransaction
{
public string Id { get; set; }
public string AccountId { get; set; }
public long Amount { get; set; }
public bool Accounted { get; set; }
public string Type { get; set; }
public bool Active { get; set; }
public MicroAccount Account { get; set; }
public string? DependentId { get; set; }
public MicroTransaction? Dependent { get; set; }
public List<MicroTransaction> Dependents { get; set; }
}