using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace WIDESEAWCS_DTO.SerialPort
|
{
|
public class AddUserDTO
|
{
|
public string username { get; set; }
|
|
public int log_id { get; set; }
|
|
//public string facetoken { get; set; }
|
|
public string phoneno { get; set; }
|
|
public int roleid { get; set; }
|
|
public string rolename { get; set; }
|
|
public byte enable { get; set; }
|
|
public string path { get; set; }
|
}
|
}
|