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