bloxstrap/Bloxstrap/ViewModels/BehaviourViewModel.cs
pizzaboxer 6d72ec973e
Move auto channel change preference
moved to installation tab to make it clearer that it's related to channel preference
2023-05-14 02:05:38 +01:00

24 lines
644 B
C#

namespace Bloxstrap.ViewModels
{
public class BehaviourViewModel
{
public bool CreateDesktopIcon
{
get => App.Settings.Prop.CreateDesktopIcon;
set => App.Settings.Prop.CreateDesktopIcon = value;
}
public bool UpdateCheckingEnabled
{
get => App.Settings.Prop.CheckForUpdates;
set => App.Settings.Prop.CheckForUpdates = value;
}
public bool MultiInstanceLaunchingEnabled
{
get => App.Settings.Prop.MultiInstanceLaunching;
set => App.Settings.Prop.MultiInstanceLaunching = value;
}
}
}