CompanyDto.cs 526 B

1234567891011121314151617181920212223
  1. using MTWorkHR.Core.Global;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace MTWorkHR.Application.Models
  9. {
  10. public class CompanyDto : EntityDto
  11. {
  12. public string CompanyName { get; set; }
  13. public string CRNumber { get; set; }
  14. public int TaxNumber { get; set; }
  15. public string UserId { get; set; }
  16. public UserDto? CompanyUser { get; set; }
  17. }
  18. }