Advertisement
Guest User

Untitled

a guest
Nov 14th, 2019
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace DeadlockStudio.Core.Dto.SignalModels
  8. {
  9. public class ActionManagementGrid
  10. {
  11. public int Id { get; set; }
  12. public string Name { get; set; }
  13. public string Description { get; set; }
  14. public decimal State { get; set; }
  15. public string StateLetters { get; set; }
  16. public int PersonId { get; set; }
  17. public string PersonName { get; set; }
  18. public bool PersonActive { get; set; }
  19. public string Deadline { get; set; }
  20. public string CompletionTime { get; set; }
  21. public string Comments { get; set; }
  22. public bool ConfirmationStatus { get; set; }
  23. public string ProjectId { get; set; }
  24. public int TaskId { get; set; }
  25. public string TaskLetters { get; set; }
  26. public string StageLetters { get; set; }
  27. public string ProjectLetters { get; set; }
  28. public int RealTime { get; set; }
  29. public int Priority { get; set; }
  30. public string AssignDate { get; set; }
  31. public string UserComments { get; set; }
  32. }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement