Fix the "allow notifs" setting

This commit is contained in:
2016-10-05 18:45:03 +02:00
parent 7b96137d74
commit 2d6047b2cf

View File

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