mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-04-13 06:36:14 +00:00
Switch from DateTime to DateTimeOffset
This commit is contained in:
@@ -12,9 +12,11 @@ namespace DiscordChatExporter.Cli.Verbs.Options
|
||||
[Option('o', "output", Default = null, HelpText = "Output file or directory path.")]
|
||||
public string OutputPath { get; set; }
|
||||
|
||||
// HACK: CommandLineParser doesn't support DateTimeOffset
|
||||
[Option("after", Default = null, HelpText = "Limit to messages sent after this date.")]
|
||||
public DateTime? After { get; set; }
|
||||
|
||||
// HACK: CommandLineParser doesn't support DateTimeOffset
|
||||
[Option("before", Default = null, HelpText = "Limit to messages sent before this date.")]
|
||||
public DateTime? Before { get; set; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user