mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-22 10:31:26 -07:00
24 lines
644 B
C#
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;
|
|
}
|
|
}
|
|
}
|