diff --git a/BookAStar/BookAStar/ViewModels/DashboardViewModel.cs b/BookAStar/BookAStar/ViewModels/DashboardViewModel.cs index 72549605..88e181e6 100644 --- a/BookAStar/BookAStar/ViewModels/DashboardViewModel.cs +++ b/BookAStar/BookAStar/ViewModels/DashboardViewModel.cs @@ -46,6 +46,17 @@ namespace BookAStar.ViewModels } } + public bool ReceivePushNotifications + { + get + { + return MainSettings.PushNotifications; + } + set + { + MainSettings.PushNotifications = value; + } + } private long queryCount; private User user;