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:
422 bytes
|
Line | |
---|
1 | using backend.Entities;
|
---|
2 |
|
---|
3 | namespace backend.DTOs
|
---|
4 | {
|
---|
5 | public class ToDoItemResponse
|
---|
6 | {
|
---|
7 | public int Id { get; set; }
|
---|
8 | public DateTime CreatedAt { get; set; }
|
---|
9 | public string Title { get; set; }
|
---|
10 | public string Description { get; set; }
|
---|
11 | public ReviewResponse? LinkedReview { get; set; }
|
---|
12 | public ToDoStatus Status { get; set; }
|
---|
13 | public int Priority { get; set; }
|
---|
14 | }
|
---|
15 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.