mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-19 05:33:31 +01:00
3a2970a495
* Label Factory * fix typo and format
26 lines
605 B
C#
26 lines
605 B
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reflection.Emit;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Newtonsoft.Json;
|
|
|
|
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>();
|
|
}
|
|
}
|