bloxstrap/Bloxstrap/UI/ViewModels/Settings/BloxstrapViewModel.cs
2024-10-01 11:46:02 +01:00

12 lines
309 B
C#

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