using Newtonsoft.Json; namespace backend.DTOs { public class RestaurantResponse { [JsonProperty] public string Name { get; set; } [JsonProperty] public string Address { get; set; } [JsonProperty] public string Phone { get; set; } [JsonProperty] public List Menu { get; set; } [JsonProperty] public List Reviews { get; set; } [JsonProperty] public double AverageReview { get; set; } [JsonProperty] public string Base64Image { get; set; } } }