You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

RestaurantMenuContainer.cs 851B

1234567891011121314151617181920212223
  1. using System.Collections.Generic;
  2. namespace ProRestaurant.Containers
  3. {
  4. public class RestaurantMenuContainer
  5. {
  6. public int Id { get; set; }
  7. public string Name { get; set; }
  8. public string Categories { get; set; }
  9. public string DeliveryTime { get; set; }
  10. public string DeliveryFee { get; set; }
  11. public string Suburb { get; set; }
  12. public string City { get; set; }
  13. public string Province { get; set; }
  14. public string PostalCode { get; set; }
  15. public decimal Latitude { get; set; }
  16. public decimal Longitude { get; set; }
  17. public string Logo { get; set; }
  18. public List<string> CategoryList { get; set; }
  19. public List<TradingHourContainer> TradingHours { get; set; }
  20. public List<MenuCategoryContainer> MenuList { get; set; }
  21. }
  22. }