UniversityDto.cs 468 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using Countries.NET;
  8. using MTWorkHR.Application.Models;
  9. using MTWorkHR.Core.Entities.Base;
  10. using MTWorkHR.Core.Global;
  11. namespace MTWorkHR.Application.Models
  12. {
  13. public class UniversityDto : EntityDto
  14. {
  15. public string NameAr { get; set; }
  16. public string NameEn { get; set; }
  17. }
  18. }