Răsfoiți Sursa

Add SeriesStatus.Unreleased

Niels van Velzen 2 ani în urmă
părinte
comite
16ad39e581
1 a modificat fișierele cu 9 adăugiri și 4 ștergeri
  1. 9 4
      MediaBrowser.Model/Entities/SeriesStatus.cs

+ 9 - 4
MediaBrowser.Model/Entities/SeriesStatus.cs

@@ -1,18 +1,23 @@
 namespace MediaBrowser.Model.Entities
 {
     /// <summary>
-    /// Enum SeriesStatus.
+    /// The status of a series.
     /// </summary>
     public enum SeriesStatus
     {
         /// <summary>
-        /// The continuing.
+        /// The continuing status. This indicates that a series is currently releasing.
         /// </summary>
         Continuing,
 
         /// <summary>
-        /// The ended.
+        /// The ended status. This indicates that a series has completed and is no longer being released.
         /// </summary>
-        Ended
+        Ended,
+
+        /// <summary>
+        /// The unreleased status. This indicates that a series has not been released yet.
+        /// </summary>
+        Unreleased
     }
 }