using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; using Countries.NET; using MTWorkHR.Application.Models; using MTWorkHR.Core.Entities.Base; using MTWorkHR.Core.Global; namespace MTWorkHR.Application.Models { public class UniversityDto : EntityDto { public string NameAr { get; set; } public string NameEn { get; set; } } }