2024-07-24 20:16:20 +09:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2024-07-26 01:46:17 +02:00
|
|
|
namespace BTCPayServer.Models.ServerViewModels;
|
|
|
|
|
|
|
|
public class ListDictionariesViewModel
|
2024-07-24 20:16:20 +09:00
|
|
|
{
|
2024-07-26 01:46:17 +02:00
|
|
|
public class DictionaryViewModel
|
2024-07-24 20:16:20 +09:00
|
|
|
{
|
2024-07-26 01:46:17 +02:00
|
|
|
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; }
|
2024-07-24 20:16:20 +09:00
|
|
|
}
|
2024-07-26 01:46:17 +02:00
|
|
|
|
|
|
|
public List<DictionaryViewModel> Dictionaries = [];
|
2024-07-24 20:16:20 +09:00
|
|
|
}
|