source: resTools_backend/backend/DTOs/RestaurantResponse.cs@ d76b7ee

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

prototype final

  • Property mode set to 100644
File size: 290 bytes
Line 
1using Newtonsoft.Json;
2
3namespace backend.DTOs
4{
5 public class RestaurantResponse
6 {
7 [JsonProperty]
8 public int Id { get; set; }
9 [JsonProperty]
10 public int? OwnerId { get; set; }
11 [JsonProperty]
12 public string Name { get; set; }
13 }
14}
Note: See TracBrowser for help on using the repository browser.