mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-02 21:43:08 +00:00
This reverts commit 2dfdfac2bb52e4ff919ee5f1b3986a839d71b0a2. # Conflicts: # Tests/FrameworkTests/LifecycelyTest.cs
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; }
|
|
}
|
|
}
|