Files
Workspace/Assets/Modules/ShrinkCommand.Integration.EventBus/ShrinkCommandEventBusBridgeOptions.cs
T

11 lines
287 B
C#

#nullable enable
namespace ShrinkCommand.Integration
{
public sealed class ShrinkCommandEventBusBridgeOptions
{
public string ServiceName { get; set; } = ShrinkCommandConstants.DefaultServiceName;
public IShrinkCommandSource? DefaultSource { get; set; }
}
}