appSetingModel.cs 682 B

1234567891011121314151617181920212223
  1. namespace Ropin.Environmentally.LedgeService1
  2. {
  3. public class appSetingModel
  4. {
  5. }
  6. public class RabbitMQModel
  7. {
  8. public string QueueName { get; set; }
  9. public string HostName { get; set; }
  10. public int Port { get; set; }
  11. public string UserName { get; set; }
  12. public string VirtualHost { get; set; }
  13. public string Password { get; set; }
  14. public string ExchangeName { get; set; }
  15. public string RoutingKey { get; set; }
  16. }
  17. public class IniInfluxData
  18. {
  19. public string infuxUrl { get; set; }
  20. public string infuxUser { get; set; }
  21. public string infuxPwd { get; set; }
  22. }
  23. }