1234567891011121314151617181920212223242526 |
- namespace Ropin.Environmentally.AlarmService.Model
- {
- public class CofingSetModel
- {
- public RabbitMQModel RabbitMQ { get; set; }
- public string PublicPushMessageAPI { get; set; }
- }
- public class RabbitMQModel
- {
-
- public string QueueName { get; set; }
-
- public string HostName { get; set; }
-
- public int Port { get; set; }
-
- public string UserName { get; set; }
-
- public string Password { get; set; }
- public string VirtualHost { get; set; }
-
- public string ExchangeName { get; set; }
-
- public string RoutingKey { get; set; }
- }
- }
|