2018-12-27 23:27:57 +00:00
|
|
|
namespace MediaBrowser.Model.Entities
|
|
|
|
{
|
|
|
|
/// <summary>
|
2022-10-30 13:27:21 +00:00
|
|
|
/// The status of a series.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
|
|
|
public enum SeriesStatus
|
|
|
|
{
|
|
|
|
/// <summary>
|
2022-10-30 13:27:21 +00:00
|
|
|
/// The continuing status. This indicates that a series is currently releasing.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
|
|
|
Continuing,
|
2020-03-24 15:12:06 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
/// <summary>
|
2022-10-30 13:27:21 +00:00
|
|
|
/// The ended status. This indicates that a series has completed and is no longer being released.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
2022-10-30 13:27:21 +00:00
|
|
|
Ended,
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The unreleased status. This indicates that a series has not been released yet.
|
|
|
|
/// </summary>
|
|
|
|
Unreleased
|
2018-12-27 23:27:57 +00:00
|
|
|
}
|
|
|
|
}
|