| 1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Security.AccessControl;
- using System.Threading.Tasks;
- namespace MqttMsgServer.Service.Client.Dto
- {
- public class RegClientDto
- {
- //private string _password;
- 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;
- }
- }
|