mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-22 10:31:26 -07:00
cleanup necessary namespaces and adjust namespaces for certain classes to better represent what they're for models, helpers and tools are all different and shouldnt really be under the same namespace
30 lines
839 B
C#
30 lines
839 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 ChannelChangePromptingEnabled
|
|
{
|
|
get => App.Settings.Prop.PromptChannelChange;
|
|
set => App.Settings.Prop.PromptChannelChange = value;
|
|
}
|
|
|
|
public bool MultiInstanceLaunchingEnabled
|
|
{
|
|
get => App.Settings.Prop.MultiInstanceLaunching;
|
|
set => App.Settings.Prop.MultiInstanceLaunching = value;
|
|
}
|
|
}
|
|
}
|