123456789101112131415161718192021222324252627282930313233 |
- namespace Ropin.IOT.MqttService
- {
- public class MqttOptions
- {
- public const string Position = "Mqtt";
-
-
-
- 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; }
- }
- }
|