aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Entities/Libraries/Series.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Jellyfin.Data/Entities/Libraries/Series.cs')
-rw-r--r--Jellyfin.Data/Entities/Libraries/Series.cs46
1 files changed, 0 insertions, 46 deletions
diff --git a/Jellyfin.Data/Entities/Libraries/Series.cs b/Jellyfin.Data/Entities/Libraries/Series.cs
deleted file mode 100644
index 0354433e0..000000000
--- a/Jellyfin.Data/Entities/Libraries/Series.cs
+++ /dev/null
@@ -1,46 +0,0 @@
-using System;
-using System.Collections.Generic;
-
-namespace Jellyfin.Data.Entities.Libraries
-{
- /// <summary>
- /// An entity representing a a series.
- /// </summary>
- public class Series : LibraryItem
- {
- /// <summary>
- /// Initializes a new instance of the <see cref="Series"/> class.
- /// </summary>
- /// <param name="library">The library.</param>
- public Series(Library library) : base(library)
- {
- Seasons = new HashSet<Season>();
- SeriesMetadata = new HashSet<SeriesMetadata>();
- }
-
- /// <summary>
- /// Gets or sets the days of week.
- /// </summary>
- public DayOfWeek? AirsDayOfWeek { get; set; }
-
- /// <summary>
- /// Gets or sets the time the show airs, ignore the date portion.
- /// </summary>
- public DateTimeOffset? AirsTime { get; set; }
-
- /// <summary>
- /// Gets or sets the date the series first aired.
- /// </summary>
- public DateTime? FirstAired { get; set; }
-
- /// <summary>
- /// Gets a collection containing the series metadata.
- /// </summary>
- public virtual ICollection<SeriesMetadata> SeriesMetadata { get; private set; }
-
- /// <summary>
- /// Gets a collection containing the seasons.
- /// </summary>
- public virtual ICollection<Season> Seasons { get; private set; }
- }
-}