//
// Copyright (c) PlaceholderCompany. All rights reserved.
//
namespace MediaBrowser.Model.Entities;
///
/// The status of a series.
///
public enum SeriesStatus
{
///
/// The continuing status. This indicates that a series is currently releasing.
///
Continuing,
///
/// The ended status. This indicates that a series has completed and is no longer being released.
///
Ended,
///
/// The unreleased status. This indicates that a series has not been released yet.
///
Unreleased
}