source: resTools_backend/backend/Entities/ToDoItem.cs@ 13f1472

Last change on this file since 13f1472 was a569b7c, checked in by Danilo <danilo.najkov@…>, 22 months ago

todo items full functionality

  • Property mode set to 100644
File size: 461 bytes
Line 
1namespace backend.Entities
2{
3 public class ToDoItem
4 {
5 public int Id { get; set; }
6 public DateTime CreatedAt { get; set; }
7 public string Title { get; set; }
8 public string Description { get; set; }
9 public virtual Review? LinkedReview { get; set; }
10 public ToDoStatus Status { get; set; }
11 public int Priority { get; set; }
12 }
13 public enum ToDoStatus { New, InProgress, Completed, Cancelled}
14}
Note: See TracBrowser for help on using the repository browser.