mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2025-05-27 05:04:11 -04:00
24 lines
No EOL
513 B
C#
24 lines
No EOL
513 B
C#
using System;
|
|
using DiscordChatExporter.Core.Models;
|
|
|
|
namespace DiscordChatExporter.Cli
|
|
{
|
|
public class CliOptions
|
|
{
|
|
public string Token { get; set; }
|
|
|
|
public string ChannelId { get; set; }
|
|
|
|
public ExportFormat ExportFormat { get; set; }
|
|
|
|
public string FilePath { get; set; }
|
|
|
|
public DateTime? From { get; set; }
|
|
|
|
public DateTime? To { get; set; }
|
|
|
|
public string DateFormat { get; set; }
|
|
|
|
public int MessageGroupLimit { get; set; }
|
|
}
|
|
} |