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