12345678910111213141516171819202122 |
- 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 CityDto :EntityDto
- {
- public string NameAr { get; set; }
- public string NameEn { get; set; }
- public long CountryId { get; set; }
- }
- }
|