2020-04-28 09:53:34 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Reflection.Emit;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
|
using Newtonsoft.Json;
|
2019-08-02 17:42:30 +02:00
|
|
|
|
|
|
|
|
|
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>();
|
|
|
|
|
}
|
|
|
|
|
}
|