13 lines
319 B
C#
13 lines
319 B
C#
namespace Kreta.MessageBroker.Configuration
|
|
{
|
|
/// <summary>
|
|
/// Notification configuration section
|
|
/// </summary>
|
|
interface IMessageBrokerConfiguration
|
|
{
|
|
/// <summary>
|
|
/// Clients
|
|
/// </summary>
|
|
MessageClientConfigurationElementCollection Clients { get; }
|
|
}
|
|
}
|