From c798529caca49ef8c323c0e003dd9f4ba0394b5a Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Mon, 20 Jan 2014 11:09:53 -0500 Subject: #680 - Support new episode file sorting --- .../FileSorting/FileSortingResult.cs | 45 ---------------------- .../FileSorting/FileSortingResultQuery.cs | 18 --------- 2 files changed, 63 deletions(-) delete mode 100644 MediaBrowser.Model/FileSorting/FileSortingResult.cs delete mode 100644 MediaBrowser.Model/FileSorting/FileSortingResultQuery.cs (limited to 'MediaBrowser.Model/FileSorting') diff --git a/MediaBrowser.Model/FileSorting/FileSortingResult.cs b/MediaBrowser.Model/FileSorting/FileSortingResult.cs deleted file mode 100644 index 43c5e7ede..000000000 --- a/MediaBrowser.Model/FileSorting/FileSortingResult.cs +++ /dev/null @@ -1,45 +0,0 @@ -using System; - -namespace MediaBrowser.Model.FileSorting -{ - public class FileSortingResult - { - /// - /// Gets or sets the original path. - /// - /// The original path. - public string OriginalPath { 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 ErrorMessage { get; set; } - - /// - /// Gets or sets the status. - /// - /// The status. - public FileSortingStatus Status { get; set; } - } - - public enum FileSortingStatus - { - Success, - Failure, - SkippedExisting, - SkippedTrial - } -} diff --git a/MediaBrowser.Model/FileSorting/FileSortingResultQuery.cs b/MediaBrowser.Model/FileSorting/FileSortingResultQuery.cs deleted file mode 100644 index 7a83cad7b..000000000 --- a/MediaBrowser.Model/FileSorting/FileSortingResultQuery.cs +++ /dev/null @@ -1,18 +0,0 @@ - -namespace MediaBrowser.Model.FileSorting -{ - public class FileSortingResultQuery - { - /// - /// Skips over a given number of items within the results. Use for paging. - /// - /// The start index. - public int? StartIndex { get; set; } - - /// - /// The maximum number of items to return - /// - /// The limit. - public int? Limit { get; set; } - } -} -- cgit v1.2.3