- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace MqttMsgServer.Service.Client.Dto
- {
- public class ConnectDto
- {
- public string ClientId { get; set; }
- public string ClientName { get; set; }
- public string Password { get; set; }
- }
- }
|