CompanyDto.cs 885 B

123456789101112131415161718192021222324252627282930
  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 CompanyUserDto? CompanyUser { get; set; }
  17. public IFormFile? CommercialRegAttach { get; set; }
  18. public IFormFile? TaxDeclarationAttach { get; set; }
  19. public IFormFile? PassportAttach { get; set; }
  20. public IFormFile? ExperienceCertificateAttach { get; set; }
  21. public IFormFile? IdAttach { get; set; }
  22. public string? CreateUser { get; set; }
  23. }
  24. }