You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/MediaBrowser.Model/Entities/SeriesStatus.cs

24 lines
628 B

namespace MediaBrowser.Model.Entities
{
/// <summary>
/// The status of a series.
/// </summary>
public enum SeriesStatus
{
/// <summary>
/// The continuing status. This indicates that a series is currently releasing.
/// </summary>
Continuing,
/// <summary>
/// The ended status. This indicates that a series has completed and is no longer being released.
/// </summary>
Ended,
/// <summary>
/// The unreleased status. This indicates that a series has not been released yet.
/// </summary>
Unreleased
}
}