Split output file into multiple partitions (#116)

This commit is contained in:
Alexey Golub
2018-11-03 22:53:20 +02:00
committed by GitHub
parent aa53cecd4e
commit a0359b1e43
13 changed files with 133 additions and 19 deletions

View File

@@ -15,14 +15,17 @@ namespace DiscordChatExporter.Gui.Messages
public DateTime? To { get; }
public int? PartitionLimit { get; }
public StartExportMessage(Channel channel, string filePath, ExportFormat format,
DateTime? from, DateTime? to)
DateTime? from, DateTime? to, int? partitionLimit)
{
Channel = channel;
FilePath = filePath;
Format = format;
From = from;
To = to;
PartitionLimit = partitionLimit;
}
}
}