2016-02-26 16:52:00 -07:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.FileOrganization
|
2014-05-08 13:26:20 -07:00
|
|
|
|
{
|
|
|
|
|
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; }
|
2016-02-26 16:52:00 -07:00
|
|
|
|
public string NewSeriesName { get; set; }
|
|
|
|
|
|
|
|
|
|
public string NewSeriesYear { get; set; }
|
|
|
|
|
|
|
|
|
|
public string TargetFolder { get; set; }
|
|
|
|
|
|
2016-02-27 15:09:14 -07:00
|
|
|
|
public Dictionary<string, string> NewSeriesProviderIds { get; set; }
|
2014-05-08 13:26:20 -07:00
|
|
|
|
}
|
|
|
|
|
}
|