Browse Source

Merge pull request #5314 from barronpm/cleanup

Remove unused entity
dkanada 4 năm trước cách đây
mục cha
commit
0cf4c7857b
1 tập tin đã thay đổi với 0 bổ sung27 xóa
  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; }
-    }
-}