btcpayserver/BTCPayServer.Data/Data/WalletData.cs

21 lines
467 B
C#
Raw Normal View History

2020-06-28 21:44:35 -05:00
using System.Collections.Generic;
namespace BTCPayServer.Data
{
public class WalletData
{
[System.ComponentModel.DataAnnotations.Key]
public string Id { get; set; }
public List<WalletTransactionData> WalletTransactions { get; set; }
public byte[] Blob { get; set; }
}
public class WalletBlobInfo
{
public Dictionary<string, string> LabelColors { get; set; } = new Dictionary<string, string>();
}
}