Merge pull request #8661 from nielsvanvelzen/seriesstatus-extended
Add SeriesStatus.Unreleased
This commit is contained in:
commit
03f5f39ab7
|
@ -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
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user