bloxstrap/Bloxstrap/UI/Menu/ViewModels/BehaviourViewModel.cs
pizzaboxer dbabfb34b4
Move multi instance launching to Integrations tab
i don't remember my justfiication for putting this under the behaviour tab? integrations makes a lot more sense imo
2023-05-16 10:17:03 +01:00

18 lines
451 B
C#

namespace Bloxstrap.UI.Menu.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;
}
}
}