CompanyDto.cs 989 B

12345678910111213141516171819202122232425262728293031
  1. using Microsoft.AspNetCore.Http;
  2. using MTWorkHR.Core.Global;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.ComponentModel.DataAnnotations;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace MTWorkHR.Application.Models
  10. {
  11. public class CompanyDto : EntityDto
  12. {
  13. public string CompanyName { get; set; }
  14. public string CRNumber { get; set; } //Commercial Registration
  15. public string? UserId { get; set; }
  16. public UserTypeEnum? UserType { get; set; }
  17. public CompanyUserDto? CompanyUser { get; set; }
  18. public IFormFile? ProfileImage { get; set; }
  19. public IFormFile? CommercialRegAttach { get; set; }
  20. public IFormFile? TaxDeclarationAttach { get; set; }
  21. public IFormFile? PassportAttach { get; set; }
  22. public IFormFile? ExperienceCertificateAttach { get; set; }
  23. public IFormFile? IdAttach { get; set; }
  24. public string? CreateUser { get; set; }
  25. }
  26. }