using ProRestaurant.Models.Restaurants; using System.Collections.Generic; namespace ProRestaurant.Containers { public class RestaurantDetails : Restaurant { public List SelectedMethodsOfPayments { get; set; } public List SavedCategories { get; set; } public List SavedTradingHours { get; set; } public int DeliveryFrom { get; set; } public int DeliveryTo { get; set; } } }