Live store update notifications.

This commit is contained in:
Burak Kaan Köse
2026-03-08 11:22:41 +01:00
parent a8f9b2d126
commit c1568d33e6
18 changed files with 341 additions and 37 deletions
@@ -308,6 +308,11 @@ public class PreferencesService(IConfigurationService configurationService) : Ob
set => SetPropertyAndSave(nameof(EmailSyncIntervalMinutes), value);
}
public bool IsStoreUpdateNotificationsEnabled
{
get => _configurationService.Get(nameof(IsStoreUpdateNotificationsEnabled), true);
set => SetPropertyAndSave(nameof(IsStoreUpdateNotificationsEnabled), value);
}
public WinoApplicationMode DefaultApplicationMode
{
get
@@ -357,3 +362,5 @@ public class PreferencesService(IConfigurationService configurationService) : Ob
return daysOfWeek;
}
}