|
@@ -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
|
|
|
}
|
|
|
}
|