TRX/tools/config/TRX_ConfigToolLib/Models/BaseLanguageViewModel.cs
lahm86 de1a63fc74 tools: clean-up config tool build messages
This fixes VS messages regarding namespaces, removes some redundant
usings and SDK parameters, and adds XAML design data contexts.
2025-04-03 17:09:56 +01:00

12 lines
285 B
C#

using TRX_ConfigToolLib.Models.Lang;
using TRX_ConfigToolLib.Utils;
namespace TRX_ConfigToolLib.Models;
public class BaseLanguageViewModel : BaseNotifyPropertyChanged
{
public static Dictionary<string, string> ViewText
{
get => Language.Instance.Controls;
}
}