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

Last change on this file since 49b0bbd was cc4db18, checked in by Danilo <danilo.najkov@…>, 2 years ago

reservation module changes + contact module + menu module

  • Property mode set to 100644
File size: 357 bytes
Line 
1using Newtonsoft.Json;
2
3namespace backend.DTOs
4{
5 public class MenuItemResponse
6 {
7 [JsonProperty]
8 public int Id { get; set; }
9 [JsonProperty]
10 public string Title { get; set; }
11 [JsonProperty]
12 public string Description { get; set; }
13 [JsonProperty]
14 public int Price { get; set; }
15 }
16}
Note: See TracBrowser for help on using the repository browser.