11 lines
287 B
C#
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; }
|
|
}
|
|
}
|