Added episode status to back end, getting ready for backlog

This commit is contained in:
kay.one 2011-05-22 09:53:06 -07:00
commit f33c2c4939
7 changed files with 177 additions and 31 deletions

View file

@ -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
}
}