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.

12345678910111213141516
  1. using System;
  2. namespace ProRestaurant.Models.Restaurants
  3. {
  4. public class TradingHours : BaseObject
  5. {
  6. public int RestaurantId { get; set; }
  7. public string Description { get; set; }
  8. public DateTime OpeningTime { get; set; }
  9. public DateTime ClosingTime { get; set; }
  10. public bool Closed { get; set; }
  11. public bool Opened24H { get; set; }
  12. public virtual Restaurant Restaurant { get; set; }
  13. }
  14. }