LASAPlatform/OpenAuth.App/ServiceApp/Response/MqttClientResp.cs

38 lines
889 B
C#
Raw Normal View History

2025-06-26 11:28:43 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.ServiceApp.Response
{
public class MqttClientResp
{
/// <summary>
/// 客户端ID
/// </summary>
public string ClientId { get; set; }
/// <summary>
/// 用户id
/// </summary>
public string UserId { get; set; }
/// <summary>
/// 用户名
/// </summary>
public string UserName { get; set; }
/// <summary>
/// 连接时间
/// </summary>
public DateTime ConnectTime { get; set; }
/// <summary>
2025-11-29 10:31:51 +08:00
/// 设备sn
/// </summary>
public string DeviceSn { get; set; }
/// <summary>
2025-06-26 11:28:43 +08:00
/// 是否控制
/// </summary>
public bool IsLock { get; set; }
}
}