12345678910111213141516171819202122 |
- 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 CompanyDto : EntityDto
- {
- public string CompanyName { get; set; }
- public string CRNumber { get; set; }
- public int TaxNumber { get; set; }
- public UserDto CompanyUser { get; set; }
-
- }
- }
|