jellyfin/MediaBrowser.Model/Configuration/AccessSchedule.cs

28 lines
684 B
C#
Raw Normal View History

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