This commit is contained in:
Tyrrrz 2021-07-17 23:53:13 +03:00
parent e1726683f8
commit 650c55bbd1
47 changed files with 280 additions and 266 deletions

View file

@ -52,13 +52,13 @@ namespace DiscordChatExporter.Gui.ViewModels.Dialogs
public PartitionLimit PartitionLimit => !string.IsNullOrWhiteSpace(PartitionLimitValue)
? PartitionLimit.Parse(PartitionLimitValue)
: NullPartitionLimit.Instance;
: PartitionLimit.Null;
public string? MessageFilterValue { get; set; }
public MessageFilter MessageFilter => !string.IsNullOrWhiteSpace(MessageFilterValue)
? MessageFilter.Parse(MessageFilterValue)
: NullMessageFilter.Instance;
: MessageFilter.Null;
public bool ShouldDownloadMedia { get; set; }