2
0
mirror of synced 2025-01-12 09:34:40 +00:00

13 lines
325 B
C#

namespace CodexPlugin.OverwatchSupport
{
public class CodexTranscriptWriterConfig
{
public CodexTranscriptWriterConfig(bool includeBlockReceivedEvents)
{
IncludeBlockReceivedEvents = includeBlockReceivedEvents;
}
public bool IncludeBlockReceivedEvents { get; }
}
}