diff options
| author | Niels van Velzen <git@ndat.nl> | 2022-10-30 14:27:21 +0100 |
|---|---|---|
| committer | Niels van Velzen <git@ndat.nl> | 2022-10-30 14:27:21 +0100 |
| commit | 16ad39e58182ac9f89993bacd2e0321d5a26711b (patch) | |
| tree | e41b3356ba9802198dcdf17c8bf5f075eb460341 | |
| parent | 4c61bf1bdb16f6cb9136f22105b9411d42298c44 (diff) | |
Add SeriesStatus.Unreleased
| -rw-r--r-- | MediaBrowser.Model/Entities/SeriesStatus.cs | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/MediaBrowser.Model/Entities/SeriesStatus.cs b/MediaBrowser.Model/Entities/SeriesStatus.cs index c77c4a8ad..1cff24e2a 100644 --- a/MediaBrowser.Model/Entities/SeriesStatus.cs +++ b/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 } } |
