UserTaskAllDto.cs 959 B

12345678910111213141516171819202122232425262728
  1. using Microsoft.AspNetCore.Http;
  2. using MTWorkHR.Core.Entities;
  3. using MTWorkHR.Core.Entities.Base;
  4. using MTWorkHR.Core.Global;
  5. using System.ComponentModel.DataAnnotations;
  6. using System.ComponentModel.DataAnnotations.Schema;
  7. namespace MTWorkHR.Application.Models
  8. {
  9. public class UserTaskAllDto : EntityDto
  10. {
  11. public string AssignedUserId { get; set; }
  12. public string? AssignedUserName { get; set; }
  13. public string? ProfileImage { get; set; }
  14. public string Title { get; set; }
  15. public string Description { get; set; }
  16. public DateTime DueDate { get; set; }
  17. public PriorityEnum Priority { get; set; }
  18. public int ProjectId { get; set; }
  19. public long StatusId { get; set; }
  20. public int AttachmentCount { get; set; }
  21. public int CommentsCount { get; set; }
  22. public string? CreateUser { get; set; }
  23. }
  24. }