aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Configuration/AccessSchedule.cs
blob: 120c47dbca1794c17adacdfeedab51d7bceff616 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#pragma warning disable CS1591

namespace MediaBrowser.Model.Configuration
{
    public class AccessSchedule
    {
        /// <summary>
        /// Gets or sets the day of week.
        /// </summary>
        /// <value>The day of week.</value>
        public DynamicDayOfWeek DayOfWeek { get; set; }

        /// <summary>
        /// Gets or sets the start hour.
        /// </summary>
        /// <value>The start hour.</value>
        public double StartHour { get; set; }

        /// <summary>
        /// Gets or sets the end hour.
        /// </summary>
        /// <value>The end hour.</value>
        public double EndHour { get; set; }
    }
}