Explorar o código

Merge pull request #8661 from nielsvanvelzen/seriesstatus-extended

Add SeriesStatus.Unreleased
Claus Vium %!s(int64=2) %!d(string=hai) anos
pai
achega
03f5f39ab7
Modificáronse 1 ficheiros con 9 adicións e 4 borrados
  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
     }
 }