Last change
on this file 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:
785 bytes
|
Line | |
---|
1 | using backend.Entities;
|
---|
2 | using Newtonsoft.Json;
|
---|
3 |
|
---|
4 | namespace backend.DTOs
|
---|
5 | {
|
---|
6 | public class ReservationResponse
|
---|
7 | {
|
---|
8 | [JsonProperty]
|
---|
9 | public int Id { get; set; }
|
---|
10 | [JsonProperty]
|
---|
11 | public DateTime StartDate { get; set; }
|
---|
12 | [JsonProperty]
|
---|
13 | public ReservationPlace ReservationPlace { get; set; }
|
---|
14 | [JsonProperty]
|
---|
15 | public ReservationStatus ReservationStatus { get; set; }
|
---|
16 | [JsonProperty]
|
---|
17 | public ReservationType ReservationType { get; set; }
|
---|
18 | [JsonProperty]
|
---|
19 | public int Persons { get; set; }
|
---|
20 | [JsonProperty]
|
---|
21 | public string ContactName { get; set; }
|
---|
22 | [JsonProperty]
|
---|
23 | public string ContactNumber { get; set; }
|
---|
24 | [JsonProperty]
|
---|
25 | public int Table { get; set; }
|
---|
26 | }
|
---|
27 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.