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