UserLoginResultInfoDto.cs 495 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace ProductionLineMonitor.Core.Dtos
  5. {
  6. public class UserLoginResultInfoDto
  7. {
  8. public string JobNo { get; set; }
  9. public string Name { get; set; }
  10. public string RoleId { get; set; }
  11. public string RoleName { get; set; }
  12. public DateTime? CreateTime { get; set; }
  13. public IList<MenuDto> MenuDtos { get; set; }
  14. public bool IsInitialPassword { get; set; }
  15. }
  16. }