123456789101112131415161718192021222324 |
- 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 UserDto
- {
- public string Id { get; set; }
- public string Email { get; set; }
- public string FirstName { get; set; }
- public string LastName { get; set; }
- public string PhoneNumber { get; set; }
- public string LinkedInLink { get; set; }
- public UserTypeEnum UserType { get; set; }
- public string UserName { get; set; }
- public IList<UserRoleDto>? UserRoles { get; set; }
- }
- }
|