using Newtonsoft.Json; namespace backend.DTOs { public class MenuItemResponse { [JsonProperty] public int Id { get; set; } [JsonProperty] public string Title { get; set; } [JsonProperty] public string Description { get; set; } [JsonProperty] public int Price { get; set; } [JsonProperty] public bool IsVipOnly { get; set; } [JsonProperty] public string Alergens { get; set; } [JsonProperty] public string Image { get; set; } } }