Let user disable auto-updates

This commit is contained in:
Alexey Golub
2018-02-25 18:22:55 +02:00
parent 4540134a98
commit 9988300942
6 changed files with 37 additions and 1 deletions

View File

@@ -8,6 +8,12 @@ namespace DiscordChatExporter.Gui.ViewModels
{
private readonly ISettingsService _settingsService;
public bool IsAutoUpdateEnabled
{
get => _settingsService.IsAutoUpdateEnabled;
set => _settingsService.IsAutoUpdateEnabled = value;
}
public string DateFormat
{
get => _settingsService.DateFormat;