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.

Restaurant.cs 1.2KB

123456789101112131415161718192021222324252627282930
  1. using System.Collections.Generic;
  2. namespace ProRestaurant.Models.Restaurants
  3. {
  4. public class Restaurant : BaseObject
  5. {
  6. public string Name { get; set; }
  7. public string Logo { get; set; }
  8. public decimal DeliveryFee { get; set; }
  9. public decimal DeliveryRadius { get; set; }
  10. public string MethodsOfPayment { get; set; } //Comma separated list - can be displayed as a drop down.
  11. public string ShoppingCentre { get; set; }
  12. public string ShopNumber { get; set; }
  13. public string GoogleMapUrl { get; set; }
  14. public decimal Latitude { get; set; }
  15. public decimal Longitude { get; set; }
  16. public string StreetNumber { get; set; }
  17. public string StreetName { get; set; }
  18. public string Suburb { get; set; }
  19. public string City { get; set; }
  20. public string Provice { get; set; }
  21. public string Country { get; set; }
  22. public string PostalCode { get; set; }
  23. public string DeliveryTime { get; set; }
  24. public string Categories { get; set; }
  25. public ICollection<TradingHours> TradingHours { get; set; }
  26. public ICollection<RestaurantUser> Users { get; set; }
  27. }
  28. }