12345678910111213141516171819202122232425262728293031 |
- using MTWorkHR.Core.Global;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MTWorkHR.Application.Models
- {
- public class UserDto
- {
- public string? Id { get; set; }
- [Required]
- [EmailAddress]
- public string Email { get; set; }
- [Required]
- public string FirstName { get; set; }
- public string LastName { get; set; }
- public string PhoneNumber { get; set; }
- public string LinkedInLink { get; set; }
- [Required]
- public UserTypeEnum UserType { get; set; }
- [Required]
- [MinLength(6)]
- public string UserName { get; set; }
- public string Password { get; set; }
- public IList<UserRoleDto>? UserRoles { get; set; }
- }
- }
|