- using Microsoft.AspNetCore.Http;
- using MTWorkHR.Core.Entities;
- using MTWorkHR.Core.Entities.Base;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- namespace MTWorkHR.Application.Models
- {
- public class TaskStatusDto
- {
- public long TaskId { get; set; }
- public int StatusId { get; set; }
- }
- }
|