From a29e1eb036d22d108ee4234d31650a061b591073 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Tue, 21 Jan 2014 11:24:12 -0500 Subject: #680 - begin resolution feature --- .../FileOrganization/FileOrganizationResult.cs | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) (limited to 'MediaBrowser.Model/FileOrganization/FileOrganizationResult.cs') diff --git a/MediaBrowser.Model/FileOrganization/FileOrganizationResult.cs b/MediaBrowser.Model/FileOrganization/FileOrganizationResult.cs index ca912ed63..d2d52f4aa 100644 --- a/MediaBrowser.Model/FileOrganization/FileOrganizationResult.cs +++ b/MediaBrowser.Model/FileOrganization/FileOrganizationResult.cs @@ -33,6 +33,24 @@ namespace MediaBrowser.Model.FileOrganization /// /// The extracted year. public int? ExtractedYear { get; set; } + + /// + /// Gets or sets the extracted season number. + /// + /// The extracted season number. + public int? ExtractedSeasonNumber { get; set; } + + /// + /// Gets or sets the extracted episode number. + /// + /// The extracted episode number. + public int? ExtractedEpisodeNumber { get; set; } + + /// + /// Gets or sets the extracted ending episode number. + /// + /// The extracted ending episode number. + public int? ExtractedEndingEpisodeNumber { get; set; } /// /// Gets or sets the target path. @@ -69,8 +87,7 @@ namespace MediaBrowser.Model.FileOrganization { Success, Failure, - SkippedExisting, - SkippedTrial + SkippedExisting } public enum FileOrganizerType -- cgit v1.2.3