AccessSchedule.cs 684 B

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