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