using System; using System.Collections.Generic; using System.Text; namespace ProductionLineMonitor.Core.Dtos { public class UserLoginResultInfoDto { public string JobNo { get; set; } public string Name { get; set; } public string RoleId { get; set; } public string RoleName { get; set; } public DateTime? CreateTime { get; set; } public IList MenuDtos { get; set; } public bool IsInitialPassword { get; set; } } }