#nullable enable using System; using ShrinkEventBus; namespace ShrinkNetwork.Integration { public sealed class ShrinkNetworkEventBusBridgeOptions { public bool AutoRegisterAttributedMessages { get; set; } = true; public bool AutoRegisterStaticHandlers { get; set; } public Func? SessionFilter { get; set; } public IShrinkNetworkDispatchScheduler? DispatchScheduler { get; set; } } }