12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- namespace Ropin.Environmentally.DcsService.AppSetingModel
- {
- public class CmdModel
- {
- public MqttOptions Mqtt { get; set; } = new MqttOptions();
- public HttpOptions Http { get; set; } = new HttpOptions();
- }
- public class MqttOptions
- {
-
-
-
- public string Ip { get; set; } = string.Empty;
-
-
-
- public int Port { get; set; } = 0;
-
-
-
- public string UserName { get; set; } = string.Empty;
-
-
-
- public string Password { get; set; } = string.Empty;
-
-
-
- public string Theme { get; set; }
-
-
-
- public string JsonConfig { get; set; }
- }
- public class HttpOptions
- {
- public string clientId { get; set; } = string.Empty;
- public string clientSecret { get; set; } = string.Empty;
-
-
-
- public string Api { get; set; } = string.Empty;
- }
- }
|