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:
303 bytes
|
Line | |
---|
1 | using Newtonsoft.Json;
|
---|
2 |
|
---|
3 | namespace backend.DTOs
|
---|
4 | {
|
---|
5 | public class UpdateRestaurantRequest
|
---|
6 | {
|
---|
7 | [JsonProperty]
|
---|
8 | public string Name { get; set; }
|
---|
9 | [JsonProperty]
|
---|
10 | public string Address { get; set; }
|
---|
11 | [JsonProperty]
|
---|
12 | public string Phone { get; set; }
|
---|
13 | }
|
---|
14 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.