You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
778 B
C#
34 lines
778 B
C#
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>
|
|
/// 是否控制
|
|
/// </summary>
|
|
public bool IsLock { get; set; }
|
|
|
|
}
|
|
}
|