| 12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MqttMsgServer.HttpService.dto
- {
- public class ClientDto
- {
- public string ClientName { get; set; }
- public string Password
- {
- //get => _password;
- //set => _password = StringHelper.GenerateMD5(value);
- get;
- set;
- }
- public string SystemDesc { get; set; }
- public string Id { get; set; }
- public int ClientState { get; set; } = 1;
- public int Hours { get; set; } = 24;
- }
- }
|