2023-03-26 13:42:38 +02:00
|
|
|
using System.Collections.Generic;
|
2023-02-22 03:47:02 +01:00
|
|
|
using BTCPayServer.Services;
|
|
|
|
|
|
|
|
namespace BTCPayServer.Components.LabelManager
|
|
|
|
{
|
|
|
|
public class LabelViewModel
|
|
|
|
{
|
|
|
|
public string[] SelectedLabels { get; set; }
|
2023-03-26 13:42:38 +02:00
|
|
|
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; }
|
2023-02-22 03:47:02 +01:00
|
|
|
}
|
|
|
|
}
|