浏览代码

Remove unused entity

Patrick Barron 4 年之前
父节点
当前提交
ebb6467db4
共有 1 个文件被更改,包括 0 次插入27 次删除
  1. 0 27
      MediaBrowser.Model/Configuration/AccessSchedule.cs

+ 0 - 27
MediaBrowser.Model/Configuration/AccessSchedule.cs

@@ -1,27 +0,0 @@
-using Jellyfin.Data.Enums;
-
-#pragma warning disable CS1591
-
-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; }
-    }
-}