ConnectDto.cs 327 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace MqttMsgServer.Service.Client.Dto
  6. {
  7. public class ConnectDto
  8. {
  9. public string ClientId { get; set; }
  10. public string ClientName { get; set; }
  11. public string Password { get; set; }
  12. }
  13. }