mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-04-27 08:23:03 +00:00
Replace --include-threads and --include-archived-threads with a single multi-value option
Related to #1119
This commit is contained in:
12
DiscordChatExporter.Cli/Commands/Shared/ThreadInclusion.cs
Normal file
12
DiscordChatExporter.Cli/Commands/Shared/ThreadInclusion.cs
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user