mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 10:47:08 -07:00
Added episode status to back end, getting ready for backlog
This commit is contained in:
parent
3bfa1c52b7
commit
f33c2c4939
7 changed files with 177 additions and 31 deletions
|
@ -2,8 +2,30 @@
|
|||
{
|
||||
public enum EpisodeStatusType
|
||||
{
|
||||
Missing = 0,
|
||||
Grabbed = 1,
|
||||
Downloaded = 2
|
||||
/// <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
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue