UserAllDto.cs 827 B

123456789101112131415161718192021222324252627
  1. using MTWorkHR.Core.Global;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace MTWorkHR.Application.Models
  8. {
  9. public class UserAllDto
  10. {
  11. public string? Id { get; set; }
  12. public string UserName { get; set; }
  13. public string FullName { get; set; }
  14. public string PhoneNumber { get; set; }
  15. public string Email { get; set; }
  16. public string? ManagerId { get; set; }
  17. public string ManagerName { get; set; }
  18. public long? DepartmentId { get; set; }
  19. public string DepartmentName { get; set; }
  20. public string BranchName { get; set; }
  21. public bool IsSalesman { get; set; }
  22. public long? HierarchyId { get; set; }
  23. public bool IsStopped { get; set; }
  24. }
  25. }