Dish.cs 468 B

123456789101112131415
  1. namespace RestaurantApp.Models
  2. {
  3. public class Dish
  4. {
  5. public int DishId { get; set; }
  6. public int CategoryId { get; set; }
  7. public string CategoryName { get; set; }
  8. public string Name { get; set; }
  9. public string Description { get; set; }
  10. public decimal Price { get; set; }
  11. public int? WeightG { get; set; }
  12. public int? CookTimeMin { get; set; }
  13. public bool IsAvailable { get; set; }
  14. }
  15. }