@ -8,7 +8,7 @@ namespace DiscordChatExporter.Cli.Verbs
{
public class GetDirectMessageChannelsVerb : Verb<GetDirectMessageChannelsOptions>
public GetDirectMessageChannelsVerb(GetDirectMessageChannelsOptions options)
: base(options)
}
public class GetGuildsVerb : Verb<GetGuildsOptions>
public GetGuildsVerb(GetGuildsOptions options)
@ -15,7 +15,7 @@
public string Topic { get; }
public ChannelType Type { get; }
public Channel(string id, string parentId, string guildId, string name, string topic, ChannelType type)
Id = id;
@ -1,6 +1,6 @@
namespace DiscordChatExporter.Gui
public partial class App
@ -21,6 +21,6 @@ namespace DiscordChatExporter.Gui.ViewModels.Framework
public abstract class DialogScreen : DialogScreen<bool?>
@ -39,6 +39,6 @@ namespace DiscordChatExporter.Gui.ViewModels.Framework
public static ExportSetupViewModel CreateExportSetupViewModel(this IViewModelFactory factory,
GuildViewModel guild, ChannelViewModel channel)
=> factory.CreateExportSetupViewModel(guild, new[] {channel});
=> factory.CreateExportSetupViewModel(guild, new[] { channel });
@ -274,7 +274,7 @@ namespace DiscordChatExporter.Gui.ViewModels
// Get chat log
var chatLog = await _dataService.GetChatLogAsync(token, dialog.Guild, channel,
dialog.After, dialog.Before, operation);
// Export
@ -4,7 +4,7 @@
public RootView()
InitializeComponent();