TRX/tools/installer/TRX_InstallerLib/Models/FinishSettings.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

35 lines
725 B
C#

using TRX_InstallerLib.Utils;
namespace TRX_InstallerLib.Models;
public class FinishSettings : BaseNotifyPropertyChanged
{
public bool LaunchGame
{
get => _launchGame;
set
{
if (value != _launchGame)
{
_launchGame = value;
NotifyPropertyChanged();
}
}
}
public bool OpenGameDirectory
{
get => _openGameDirectory;
set
{
if (value != _openGameDirectory)
{
_openGameDirectory = value;
NotifyPropertyChanged();
}
}
}
private bool _launchGame = false;
private bool _openGameDirectory = true;
}