mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-03 00:29:20 +00:00
12 lines
321 B
C#
12 lines
321 B
C#
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);
|
|
}
|
|
} |