mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-02 13:33:07 +00:00
13 lines
325 B
C#
13 lines
325 B
C#
|
|
namespace CodexPlugin.OverwatchSupport
|
|||
|
|
{
|
|||
|
|
public class CodexTranscriptWriterConfig
|
|||
|
|
{
|
|||
|
|
public CodexTranscriptWriterConfig(bool includeBlockReceivedEvents)
|
|||
|
|
{
|
|||
|
|
IncludeBlockReceivedEvents = includeBlockReceivedEvents;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public bool IncludeBlockReceivedEvents { get; }
|
|||
|
|
}
|
|||
|
|
}
|