using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.ServiceApp.DroneDockManage.Response
{
public class MqttClientResp
{
///
/// 客户端ID
///
public string ClientId { get; set; }
///
/// 用户id
///
public string UserId { get; set; }
///
/// 用户名
///
public string UserName { get; set; }
///
/// 连接时间
///
public DateTime ConnectTime { get; set; }
///
/// 是否控制
///
public bool IsLock { get; set; }
}
}