CompanyDto.cs 482 B

12345678910111213141516171819202122
  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 UserDto CompanyUser { get; set; }
  16. }
  17. }