Fix the "allow notifs" setting

vnext
Paul Schneider 8 years ago
parent 7b96137d74
commit 2d6047b2cf
1 changed files with 11 additions and 0 deletions

@ -46,6 +46,17 @@ namespace BookAStar.ViewModels
}
}
public bool ReceivePushNotifications
{
get
{
return MainSettings.PushNotifications;
}
set
{
MainSettings.PushNotifications = value;
}
}
private long queryCount;
private User user;

Loading…