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

TradingHoursContainer.cs 339B

123456789101112
  1. namespace ProRestaurant.Containers
  2. {
  3. public class TradingHoursContainer
  4. {
  5. public int Id { get; set; }
  6. public string Description { get; set; }
  7. public string From { get; set; }
  8. public string To { get; set; }
  9. public bool Closed { get; set; }
  10. public bool Open24 { get; set; }
  11. }
  12. }