123456789101112131415161718192021 |
- 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 UserTaskStatusDto : EntityDto
- {
- public string NameAr { get; set; }
- public string NameEn { get; set; }
- }
- }
|