From d270b10db67eeaa16a35920d5d86b1975dfffd16 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Thu, 27 Jul 2017 01:18:39 -0400 Subject: move auto-organize to plugin --- .../FileOrganization/FileOrganizationResult.cs | 109 --------------------- 1 file changed, 109 deletions(-) delete mode 100644 MediaBrowser.Model/FileOrganization/FileOrganizationResult.cs (limited to 'MediaBrowser.Model/FileOrganization/FileOrganizationResult.cs') diff --git a/MediaBrowser.Model/FileOrganization/FileOrganizationResult.cs b/MediaBrowser.Model/FileOrganization/FileOrganizationResult.cs deleted file mode 100644 index caf99183d..000000000 --- a/MediaBrowser.Model/FileOrganization/FileOrganizationResult.cs +++ /dev/null @@ -1,109 +0,0 @@ -using System; -using System.Collections.Generic; - -namespace MediaBrowser.Model.FileOrganization -{ - public class FileOrganizationResult - { - /// - /// Gets or sets the result identifier. - /// - /// The result identifier. - public string Id { get; set; } - - /// - /// Gets or sets the original path. - /// - /// The original path. - public string OriginalPath { get; set; } - - /// - /// Gets or sets the name of the original file. - /// - /// The name of the original file. - public string OriginalFileName { get; set; } - - /// - /// Gets or sets the name of the extracted. - /// - /// The name of the extracted. - public string ExtractedName { get; set; } - - /// - /// Gets or sets the extracted year. - /// - /// 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. - /// - /// The target path. - public string TargetPath { get; set; } - - /// - /// Gets or sets the date. - /// - /// The date. - public DateTime Date { get; set; } - - /// - /// Gets or sets the error message. - /// - /// The error message. - public string StatusMessage { get; set; } - - /// - /// Gets or sets the status. - /// - /// The status. - public FileSortingStatus Status { get; set; } - - /// - /// Gets or sets the type. - /// - /// The type. - public FileOrganizerType Type { get; set; } - - /// - /// Gets or sets the duplicate paths. - /// - /// The duplicate paths. - public List DuplicatePaths { get; set; } - - /// - /// Gets or sets the size of the file. - /// - /// The size of the file. - public long FileSize { get; set; } - - /// - /// Indicates if the item is currently being processed. - /// - /// Runtime property not persisted to the store. - public bool IsInProgress { get; set; } - - public FileOrganizationResult() - { - DuplicatePaths = new List(); - } - } -} -- cgit v1.2.3