AccessSchedule.cs 622 B

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