You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
392 B
C#

namespace DS.WMS.Core.SecurityModule.Dtos;
public class SecurityUserInput
{
public string Id { get; set; }
public string UserName { get; set; }= "";
public string Duty { get; set; }= "";
public string Phone { get; set; }= "";
/// <summary>
/// 用戶类型
/// </summary>
public string[] TypeIds { get; set; }
public string Note { get; set; } = "";
}