blob: 341ce192f20af989773f016ef84493ce4fdb4073 [file] [log] [blame]
using BaSys40.Utils.Security;
namespace BaSys40.Utils.Config
{
public interface IEventHandlerConfig
{
string ClientId { get; }
string BrokerEndpoint { get; }
int PublishTimeout { get; }
int ReceiveTimeout { get; }
ICredentials Credentials { get; }
ISecurity Security { get; }
}
}