Files
DiscordChatExporter/DiscordChatExporter.Core.Rendering/RenderOptions.cs
Alexey Golub 26d713a17c Refactor
2020-01-11 17:28:01 +02:00

20 lines
496 B
C#

using DiscordChatExporter.Core.Models;
namespace DiscordChatExporter.Core.Rendering
{
public class RenderOptions
{
public string BaseFilePath { get; }
public ExportFormat Format { get; }
public int? PartitionLimit { get; }
public RenderOptions(string baseFilePath, ExportFormat format, int? partitionLimit)
{
BaseFilePath = baseFilePath;
Format = format;
PartitionLimit = partitionLimit;
}
}
}