mirror of
https://github.com/LostArtefacts/TRX.git
synced 2025-04-28 20:58:07 +03:00
35 lines
725 B
C#
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;
|
|
}
|