namespace RestaurantApp.Models { public class Dish { public int DishId { get; set; } public int CategoryId { get; set; } public string CategoryName { get; set; } public string Name { get; set; } public string Description { get; set; } public decimal Price { get; set; } public int? WeightG { get; set; } public int? CookTimeMin { get; set; } public bool IsAvailable { get; set; } } }