TRX/tools/installer/TRX_InstallerLib/Models/BaseLanguageViewModel.cs
lahm86 e16fcda94b tools/installer: create common installer library
This creates a generic common installer WPF library for both games.
2025-03-30 12:34:54 +01:00

11 lines
255 B
C#

using TRX_InstallerLib.Utils;
namespace TRX_InstallerLib.Models;
public class BaseLanguageViewModel : BaseNotifyPropertyChanged
{
public static Dictionary<string, string> ViewText
{
get => Language.Instance.Controls ?? new();
}
}