mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
a2fa688cde
* Create new tables * wip * wip * Refactor LegacyLabel * Remove LabelFactory * Add migration * wip * wip * Add pull-payment attachment to tx * Address kukks points
23 lines
496 B
C#
23 lines
496 B
C#
using System;
|
|
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>();
|
|
}
|
|
}
|