2025-04-25 15:42:13 +02:00

15 lines
423 B
C#

namespace CodexPlugin.OverwatchSupport
{
public class CodexTranscriptWriterConfig
{
public CodexTranscriptWriterConfig(string outputPath, bool includeBlockReceivedEvents)
{
OutputPath = outputPath;
IncludeBlockReceivedEvents = includeBlockReceivedEvents;
}
public string OutputPath { get; }
public bool IncludeBlockReceivedEvents { get; }
}
}