using System; using System.Collections.Generic; namespace BTCPayServer.Data { [Obsolete] public class WalletData { [System.ComponentModel.DataAnnotations.Key] public string Id { get; set; } public List WalletTransactions { get; set; } public byte[] Blob { get; set; } } public class WalletBlobInfo { public Dictionary LabelColors { get; set; } = new Dictionary(); } }