mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-19 00:51:30 -07:00
12 lines
309 B
C#
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;
|
|
}
|
|
}
|
|
}
|