CountryDto.cs 549 B

1234567891011121314151617181920212223
  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 CountryDto :EntityDto
  14. {
  15. public string NameAr { get; set; }
  16. public string NameEn { get; set; }
  17. public string Code { get; set; }
  18. public long CountryId { get; set; }
  19. }
  20. }