namespace MediaBrowser.Model.Configuration
{
    public class AccessSchedule
    {
        /// 
        /// Gets or sets the day of week.
        /// 
        /// The day of week.
        public DynamicDayOfWeek DayOfWeek { get; set; }
        /// 
        /// Gets or sets the start hour.
        /// 
        /// The start hour.
        public double StartHour { get; set; }
        /// 
        /// Gets or sets the end hour.
        /// 
        /// The end hour.
        public double EndHour { get; set; }
    }
}