12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- namespace Core.RabbitMQBus.Common
- {
-
-
-
- public class RabbitMQOptions
- {
-
-
-
-
- public const string DefaultPass = "yak";
-
-
-
-
- public const string DefaultUser = "yak";
-
-
-
-
- public const string DefaultVHost = "develop";
-
-
-
-
- public const int DefaultPort = 5672;
-
-
-
- public const string DefaultExchangeName = "amq.topic";
-
-
-
- public const string ExchangeType = "topic";
-
-
-
- public string HostName { get; set; } = "124.71.132.255";
-
-
-
- public string Password { get; set; } = DefaultPass;
-
-
-
- public string UserName { get; set; } = DefaultUser;
-
-
-
- public string VirtualHost { get; set; } = DefaultVHost;
-
-
-
- public string ExchangeName { get; set; } = DefaultExchangeName;
-
-
-
- public int Port { get; set; } = DefaultPort;
- }
- }
|