source: resTools_backend/backend/DTOs/ReservationResponse.cs@ 7a983b0

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

move files

  • Property mode set to 100644
File size: 723 bytes
Line 
1using backend.Entities;
2using Newtonsoft.Json;
3
4namespace 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 }
25}
Note: See TracBrowser for help on using the repository browser.