You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmart.Model
- {
- /// <summary>
- /// 连接参数
- /// </summary>
- public class ConnectPar
- {
- #region Redis 连接信息
- public string Redis_Host { get; set; }
- public int Redis_Port { get; set; }
- public string Redis_Password { get; set; }
- public int Redis_DB { get; set; }
- #endregion
-
- #region MQTT 连接信息
- public string MQTT_IP { get; set; }
- public int MQTT_Port { get; set; }
- public string MQTT_UserName { get; set; }
- public string MQTT_Password { get; set; }
- #endregion
-
- }
- }
|