1234567891011121314151617181920212223 |
- namespace Ropin.Environmentally.LedgeService1
- {
- public class appSetingModel
- {
- }
- 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 VirtualHost { get; set; }
- public string Password { get; set; }
- public string ExchangeName { get; set; }
- public string RoutingKey { get; set; }
- }
- public class IniInfluxData
- {
- public string infuxUrl { get; set; }
- public string infuxUser { get; set; }
- public string infuxPwd { get; set; }
- }
- }
|