123456789101112131415161718192021222324252627 |
- using MTWorkHR.Core.Global;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MTWorkHR.Application.Models
- {
- public class UserAllDto
- {
- public string? Id { get; set; }
- public string UserName { get; set; }
- public string FullName { get; set; }
- public string PhoneNumber { get; set; }
- public string Email { get; set; }
- public string? ManagerId { get; set; }
- public string ManagerName { get; set; }
- public long? DepartmentId { get; set; }
- public string DepartmentName { get; set; }
- public string BranchName { get; set; }
- public bool IsSalesman { get; set; }
- public long? HierarchyId { get; set; }
- public bool IsStopped { get; set; }
- }
- }
|