Last change
on this file was 13f1472, checked in by Danilo <danilo.najkov@…>, 2 years ago |
vip functionallity + menu fields + alergens filtering + google/fb login + email queueing
|
-
Property mode
set to
100644
|
File size:
557 bytes
|
Line | |
---|
1 | using Newtonsoft.Json;
|
---|
2 |
|
---|
3 | namespace 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 | [JsonProperty]
|
---|
16 | public bool IsVipOnly { get; set; }
|
---|
17 | [JsonProperty]
|
---|
18 | public string Alergens { get; set; }
|
---|
19 | [JsonProperty]
|
---|
20 | public string Image { get; set; }
|
---|
21 | }
|
---|
22 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.