mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-03-07 07:26:13 +00:00
Add command line interface and change solution structure (#26)
This commit is contained in:
12
DiscordChatExporter.Cli/ViewModels/IMainViewModel.cs
Normal file
12
DiscordChatExporter.Cli/ViewModels/IMainViewModel.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Threading.Tasks;
|
||||
using DiscordChatExporter.Core.Models;
|
||||
|
||||
namespace DiscordChatExporter.Cli.ViewModels
|
||||
{
|
||||
public interface IMainViewModel
|
||||
{
|
||||
Task ExportAsync(string token, string channelId, string filePath, ExportFormat format, DateTime? from,
|
||||
DateTime? to);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user