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