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.
Readarr/NzbDrone.Core/Model/EpisodeStatusType.cs

31 lines
636 B

namespace NzbDrone.Core.Model
{
public enum EpisodeStatusType
{
/// <summary>
/// Episode has not aired yet
/// </summary>
NotAired ,
/// <summary>
/// Episode is ignored
/// </summary>
Ignored,
/// <summary>
/// Episode has aired but no episode
/// files have avilable
/// </summary>
Missing ,
/// <summary>
/// Episode is being downloaded
/// </summary>
Downloading ,
/// <summary>
/// Episode is present in disk
/// </summary>
Ready
}
}