You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
564 B
26 lines
564 B
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; }
|
|
}
|
|
} |