aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/FileOrganization/EpisodeFileOrganizationRequest.cs
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2016-02-28 00:13:33 -0500
committerLuke <luke.pulverenti@gmail.com>2016-02-28 00:13:33 -0500
commit6ee9861425078fb230c3fdf6ae7a7e2dd6b3f3a8 (patch)
tree1a834e32e95368b38255807abe502f2dfa5911e0 /MediaBrowser.Model/FileOrganization/EpisodeFileOrganizationRequest.cs
parentbf257ed60183d182ff7ab5fa776efdc647f733f0 (diff)
parentf5aa1250cad988c18d62c384879e0c5f87ce607d (diff)
Merge pull request #1501 from softworkz/AutoOrganizeNewSeries
AutoOrganize new Series - Backend Implementation
Diffstat (limited to 'MediaBrowser.Model/FileOrganization/EpisodeFileOrganizationRequest.cs')
-rw-r--r--MediaBrowser.Model/FileOrganization/EpisodeFileOrganizationRequest.cs11
1 files changed, 10 insertions, 1 deletions
diff --git a/MediaBrowser.Model/FileOrganization/EpisodeFileOrganizationRequest.cs b/MediaBrowser.Model/FileOrganization/EpisodeFileOrganizationRequest.cs
index 0b12ebc51..b20e43e54 100644
--- a/MediaBrowser.Model/FileOrganization/EpisodeFileOrganizationRequest.cs
+++ b/MediaBrowser.Model/FileOrganization/EpisodeFileOrganizationRequest.cs
@@ -1,4 +1,6 @@
-namespace MediaBrowser.Model.FileOrganization
+using System.Collections.Generic;
+
+namespace MediaBrowser.Model.FileOrganization
{
public class EpisodeFileOrganizationRequest
{
@@ -13,5 +15,12 @@
public int? EndingEpisodeNumber { get; set; }
public bool RememberCorrection { get; set; }
+ public string NewSeriesName { get; set; }
+
+ public string NewSeriesYear { get; set; }
+
+ public string TargetFolder { get; set; }
+
+ public Dictionary<string, string> NewSeriesProviderIds { get; set; }
}
} \ No newline at end of file