#680 - episode organization

This commit is contained in:
Luke Pulverenti
2014-01-22 12:05:06 -05:00
parent cf1dac60f6
commit 9d40b684bf
21 changed files with 824 additions and 646 deletions

View File

@@ -15,4 +15,19 @@ namespace MediaBrowser.Model.FileOrganization
/// <value>The limit.</value>
public int? Limit { get; set; }
}
public class EpisodeFileOrganizationRequest
{
public string ResultId { get; set; }
public string SeriesId { get; set; }
public int SeasonNumber { get; set; }
public int EpisodeNumber { get; set; }
public int? EndingEpisodeNumber { get; set; }
public bool RememberCorrection { get; set; }
}
}