mirror of
https://github.com/aljazceru/BTCPayServerPlugins.git
synced 2025-12-17 15:44:26 +01:00
21 lines
549 B
C#
21 lines
549 B
C#
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; }
|
|
} |