Add rudimentary thread support in GUI

Related to #1119
This commit is contained in:
Tyrrrz
2023-08-22 21:14:34 +03:00
parent c29de2c77c
commit c410e745b1
5 changed files with 63 additions and 6 deletions

View File

@@ -26,6 +26,18 @@ public class SettingsViewModel : DialogScreen
set => _settingsService.IsTokenPersisted = value;
}
public bool ShouldShowThreads
{
get => _settingsService.ShouldShowThreads;
set => _settingsService.ShouldShowThreads = value;
}
public bool ShouldShowArchivedThreads
{
get => _settingsService.ShouldShowArchivedThreads;
set => _settingsService.ShouldShowArchivedThreads = value;
}
public string DateFormat
{
get => _settingsService.DateFormat;