mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
21 lines
467 B
C#
21 lines
467 B
C#
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>();
|
|
}
|
|
}
|