namespace MediaBrowser.Model.FileOrganization
{
    public class FileOrganizationResultQuery
    {
        /// 
        /// Skips over a given number of items within the results. Use for paging.
        /// 
        /// The start index.
        public int? StartIndex { get; set; }
        /// 
        /// The maximum number of items to return
        /// 
        /// The limit.
        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; }
    }
}