15 lines
423 B
C#
Raw Normal View History

namespace CodexPlugin.OverwatchSupport
{
public class CodexTranscriptWriterConfig
{
2025-04-25 15:42:13 +02:00
public CodexTranscriptWriterConfig(string outputPath, bool includeBlockReceivedEvents)
{
2025-04-25 15:42:13 +02:00
OutputPath = outputPath;
IncludeBlockReceivedEvents = includeBlockReceivedEvents;
}
2025-04-25 15:42:13 +02:00
public string OutputPath { get; }
public bool IncludeBlockReceivedEvents { get; }
}
}