btcpayserver/BTCPayServer/Models/ServerViewModels/ListDictionariesViewModel.cs
d11n 7878a4365c
Dictionary additions (#6120)
* Cleanups

* Add text entries for dictionary pages

* Wording: Keep Clone title consistent with Payment Request cloning

* Dictionaries: List used one first; badge for marking In use
2024-07-26 08:46:17 +09:00

17 lines
460 B
C#

using System.Collections.Generic;
namespace BTCPayServer.Models.ServerViewModels;
public class ListDictionariesViewModel
{
public class DictionaryViewModel
{
public string DictionaryName { get; set; }
public string Fallback { get; set; }
public string Source { get; set; }
public bool Editable { get; set; }
public bool IsSelected { get; set; }
}
public List<DictionaryViewModel> Dictionaries = [];
}