btcpayserver/BTCPayServer.Data/Data/WalletData.cs

23 lines
496 B
C#
Raw Normal View History

using System;
2020-06-29 04:44:35 +02:00
using System.Collections.Generic;
namespace BTCPayServer.Data
{
[Obsolete]
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>();
}
}