AccessSchedule.cs 626 B

12345678910111213141516171819202122
  1. 
  2. namespace MediaBrowser.Model.Configuration
  3. {
  4. public class AccessSchedule
  5. {
  6. /// <summary>
  7. /// Gets or sets the day of week.
  8. /// </summary>
  9. /// <value>The day of week.</value>
  10. public DynamicDayOfWeek DayOfWeek { get; set; }
  11. /// <summary>
  12. /// Gets or sets the start hour.
  13. /// </summary>
  14. /// <value>The start hour.</value>
  15. public double StartHour { get; set; }
  16. /// <summary>
  17. /// Gets or sets the end hour.
  18. /// </summary>
  19. /// <value>The end hour.</value>
  20. public double EndHour { get; set; }
  21. }
  22. }