123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- namespace Ai.AgentServer.Server.Mqtt_Ext
- {
-
-
-
- public class MqttClientConfig
- {
- public MqttClientConfig()
- {
- }
-
-
-
- public string Name { get; set; } = "Mqtt";
-
-
-
- public string Host { get; set; }
-
-
-
- public int Port { get; set; }
-
-
-
- public string SubClients { get; set; }
-
-
-
- public string UserName { get; set; }
-
-
-
- public string SecretKey { get; set; }
-
-
-
- public string ClientId { get; set; }
-
-
-
- public int KeepAlive { get; set; } = 60;
-
-
-
- public bool Reconnect { get; set; } = true;
-
-
-
- public bool CleanSession { get; set; } = true;
-
-
-
- public int Timeout { get; set; } = 15000;
-
-
-
- public bool UseSSL { get; set; } = false;
- }
- }
|