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 string UserId { get; set; } public UserDto? CompanyUser { get; set; } } }