source: resTools_backend/backend/DTOs/CreateToDoItemRequest.cs@ 49b0bbd

Last change on this file since 49b0bbd was a569b7c, checked in by Danilo <danilo.najkov@…>, 23 months ago

todo items full functionality

  • Property mode set to 100644
File size: 255 bytes
Line 
1namespace backend.DTOs
2{
3 public class CreateToDoItemRequest
4 {
5 public string Title { get; set; }
6 public string Description { get; set; }
7 public int ReviewId { get; set; }
8 public int Priority { get; set; }
9 }
10}
Note: See TracBrowser for help on using the repository browser.