mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2025-05-29 14:05:18 -04:00
26 lines
No EOL
564 B
C#
26 lines
No EOL
564 B
C#
using System;
|
|
using DiscordChatExporter.Core.Models;
|
|
|
|
namespace DiscordChatExporter.Cli
|
|
{
|
|
public class CliOptions
|
|
{
|
|
public string TokenValue { get; set; }
|
|
|
|
public bool IsBotToken { 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; }
|
|
}
|
|
} |