您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

TradingHours.cs 460B

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. }