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.
24 lines
513 B
24 lines
513 B
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; }
|
|
}
|
|
} |