mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 06:21:44 +01:00
* Wallet transactions: Add label manager * Update BTCPayServer/Views/UIWallets/WalletTransactions.cshtml Co-authored-by: Andrew Camilleri <evilkukka@gmail.com> * Add rich label info * Fixes * support labels in wallet send * add labels to tx info page * Remove noscript parts * Allow click on transaction label info * update psbt info labelstyling * revert red pixel fix as it broke all --------- Co-authored-by: Andrew Camilleri <evilkukka@gmail.com>
16 lines
538 B
C#
16 lines
538 B
C#
using System.Collections.Generic;
|
|
using BTCPayServer.Services;
|
|
|
|
namespace BTCPayServer.Components.LabelManager
|
|
{
|
|
public class LabelViewModel
|
|
{
|
|
public string[] SelectedLabels { get; set; }
|
|
public WalletObjectId WalletObjectId { get; set; }
|
|
public bool ExcludeTypes { get; set; }
|
|
public bool DisplayInline { get; set; }
|
|
public Dictionary<string, RichLabelInfo> RichLabelInfo { get; set; }
|
|
public bool AutoUpdate { get; set; }
|
|
public string SelectElement { get; set; }
|
|
}
|
|
}
|