jellyfin/MediaBrowser.Model/Configuration/AccessSchedule.cs

28 lines
684 B
C#
Raw Normal View History

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