Wallet: Delete custom labels (#5324)

* Tom Select improvements

* Wallet: Delete custom labels

Closes #5237.
This commit is contained in:
d11n
2023-09-19 02:55:04 +02:00
committed by GitHub
parent 44df8cf0c5
commit 77d8e202d3
11 changed files with 148 additions and 13 deletions

View File

@@ -0,0 +1,16 @@
using System.Collections.Generic;
namespace BTCPayServer.Models.WalletViewModels;
public class WalletLabelsModel
{
public WalletId WalletId { get; set; }
public IEnumerable<WalletLabelModel> Labels { get; set; }
}
public class WalletLabelModel
{
public string Label { get; set; }
public string Color { get; set; }
public string TextColor { get; set; }
}