2020-05-12 19:10:35 -07:00
|
|
|
using Jellyfin.Data.Enums;
|
|
|
|
|
2020-02-03 17:49:27 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
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; }
|
2020-02-03 17:49:27 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the start hour.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The start hour.</value>
|
|
|
|
public double StartHour { get; set; }
|
2020-02-03 17:49:27 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the end hour.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The end hour.</value>
|
|
|
|
public double EndHour { get; set; }
|
|
|
|
}
|
|
|
|
}
|