Replace --include-threads and --include-archived-threads with a single multi-value option

Related to #1119
This commit is contained in:
Tyrrrz
2023-08-28 21:52:56 +03:00
parent 5f6e51f6fb
commit d430f77ae1
8 changed files with 83 additions and 52 deletions

View File

@@ -0,0 +1,12 @@
using System;
namespace DiscordChatExporter.Cli.Commands.Shared;
[Flags]
public enum ThreadInclusion
{
None = 0,
Active = 1,
Archived = 2,
All = Active | Archived
}