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.
1234567891011121314 |
- using ProRestaurant.Models.Restaurants;
- using System.Collections.Generic;
-
- namespace ProRestaurant.Containers
- {
- public class RestaurantDetails : Restaurant
- {
- public List<string> SelectedMethodsOfPayments { get; set; }
- public List<Category> SavedCategories { get; set; }
- public List<TradingHoursContainer> SavedTradingHours { get; set; }
- public int DeliveryFrom { get; set; }
- public int DeliveryTo { get; set; }
- }
- }
|