Files
BTCPayServerPlugins/Plugins/BTCPayServer.Plugins.MicroNode/MicroAccount.cs
2024-01-17 09:07:18 +01:00

13 lines
376 B
C#

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