mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-05-25 18:49:25 +00:00
15 lines
439 B
C#
15 lines
439 B
C#
namespace StoragePlugin.OverwatchSupport
|
|
{
|
|
public class LogosStorageTranscriptWriterConfig
|
|
{
|
|
public LogosStorageTranscriptWriterConfig(string outputPath, bool includeBlockReceivedEvents)
|
|
{
|
|
OutputPath = outputPath;
|
|
IncludeBlockReceivedEvents = includeBlockReceivedEvents;
|
|
}
|
|
|
|
public string OutputPath { get; }
|
|
public bool IncludeBlockReceivedEvents { get; }
|
|
}
|
|
}
|