source: resTools_backend/backend/DTOs/CreateMenuItemRequest.cs@ 13f1472

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

vip functionallity + menu fields + alergens filtering + google/fb login + email queueing

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