15 lines
439 B
C#
Raw Permalink Normal View History

namespace StoragePlugin.OverwatchSupport
{
public class LogosStorageTranscriptWriterConfig
{
public LogosStorageTranscriptWriterConfig(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; }
}
}