Last change
on this file was a569b7c, checked in by Danilo <danilo.najkov@…>, 2 years ago |
todo items full functionality
|
-
Property mode
set to
100644
|
File size:
461 bytes
|
Line | |
---|
1 | namespace 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.