Sonarr/src/NzbDrone.Core/Tv/SeriesStatusType.cs

11 lines
165 B
C#

namespace NzbDrone.Core.Tv
{
public enum SeriesStatusType
{
Deleted = -1,
Continuing = 0,
Ended = 1,
Upcoming = 2
}
}