2014-10-16 03:26:39 +00:00
|
|
|
|
|
2014-10-15 00:05:09 +00:00
|
|
|
|
namespace MediaBrowser.Model.Configuration
|
|
|
|
|
{
|
|
|
|
|
public class AccessSchedule
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the day of week.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The day of week.</value>
|
2014-10-16 03:26:39 +00:00
|
|
|
|
public DynamicDayOfWeek DayOfWeek { get; set; }
|
2014-10-15 00:05:09 +00:00
|
|
|
|
/// <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; }
|
|
|
|
|
}
|
|
|
|
|
}
|