mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-02 21:43:08 +00:00
15 lines
439 B
C#
15 lines
439 B
C#
namespace CodexPlugin.OverwatchSupport
|
|
{
|
|
public class CodexTranscriptWriterConfig
|
|
{
|
|
public CodexTranscriptWriterConfig(string outputFilename, bool includeBlockReceivedEvents)
|
|
{
|
|
OutputFilename = outputFilename;
|
|
IncludeBlockReceivedEvents = includeBlockReceivedEvents;
|
|
}
|
|
|
|
public string OutputFilename { get; }
|
|
public bool IncludeBlockReceivedEvents { get; }
|
|
}
|
|
}
|