mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 06:35:13 +01:00
* 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
17 lines
460 B
C#
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 = [];
|
|
}
|