2026-04-15 20:34:49 +10:00
|
|
|
|
namespace StoragePlugin.OverwatchSupport
|
2024-08-21 09:53:20 +02:00
|
|
|
|
{
|
2026-04-15 20:34:49 +10:00
|
|
|
|
public class LogosStorageTranscriptWriterConfig
|
2024-08-21 09:53:20 +02:00
|
|
|
|
{
|
2026-04-15 20:34:49 +10:00
|
|
|
|
public LogosStorageTranscriptWriterConfig(string outputPath, bool includeBlockReceivedEvents)
|
2024-08-21 09:53:20 +02:00
|
|
|
|
{
|
2025-04-25 15:42:13 +02:00
|
|
|
|
OutputPath = outputPath;
|
2024-08-21 09:53:20 +02:00
|
|
|
|
IncludeBlockReceivedEvents = includeBlockReceivedEvents;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-04-25 15:42:13 +02:00
|
|
|
|
public string OutputPath { get; }
|
2024-08-21 09:53:20 +02:00
|
|
|
|
public bool IncludeBlockReceivedEvents { get; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|