You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
626 B
23 lines
626 B
|
|
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; }
|
|
}
|
|
}
|