ThatBen ad1b756db9
Revert "while better the new plan is still a mess"
This reverts commit 2dfdfac2bb52e4ff919ee5f1b3986a839d71b0a2.

# Conflicts:
#	Tests/FrameworkTests/LifecycelyTest.cs
2025-04-25 11:08:38 +02:00

13 lines
325 B
C#

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