namespace Bloxstrap.UI.ViewModels.Settings { public class BloxstrapViewModel : NotifyPropertyChangedViewModel { public bool UpdateCheckingEnabled { get => App.Settings.Prop.CheckForUpdates; set => App.Settings.Prop.CheckForUpdates = value; } public bool AnalyticsEnabled { get => App.Settings.Prop.EnableAnalytics; set => App.Settings.Prop.EnableAnalytics = value; } } }