mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 06:35:13 +01:00
21 lines
624 B
C#
21 lines
624 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using BTCPayServer.Services;
|
|
using Microsoft.AspNetCore.Mvc.Rendering;
|
|
|
|
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 = new List<DictionaryViewModel>();
|
|
}
|
|
}
|