aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/FileSorting
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-01-20 11:09:53 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-01-20 11:09:53 -0500
commitc798529caca49ef8c323c0e003dd9f4ba0394b5a (patch)
tree635794b946774e151976f5a36327ecd10a88caf7 /MediaBrowser.Model/FileSorting
parent5917d66172bb870102778222919575df6aa72dda (diff)
#680 - Support new episode file sorting
Diffstat (limited to 'MediaBrowser.Model/FileSorting')
-rw-r--r--MediaBrowser.Model/FileSorting/FileSortingResult.cs45
-rw-r--r--MediaBrowser.Model/FileSorting/FileSortingResultQuery.cs18
2 files changed, 0 insertions, 63 deletions
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
- {
- /// <summary>
- /// Gets or sets the original path.
- /// </summary>
- /// <value>The original path.</value>
- public string OriginalPath { get; set; }
-
- /// <summary>
- /// Gets or sets the target path.
- /// </summary>
- /// <value>The target path.</value>
- public string TargetPath { get; set; }
-
- /// <summary>
- /// Gets or sets the date.
- /// </summary>
- /// <value>The date.</value>
- public DateTime Date { get; set; }
-
- /// <summary>
- /// Gets or sets the error message.
- /// </summary>
- /// <value>The error message.</value>
- public string ErrorMessage { get; set; }
-
- /// <summary>
- /// Gets or sets the status.
- /// </summary>
- /// <value>The status.</value>
- 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
- {
- /// <summary>
- /// Skips over a given number of items within the results. Use for paging.
- /// </summary>
- /// <value>The start index.</value>
- public int? StartIndex { get; set; }
-
- /// <summary>
- /// The maximum number of items to return
- /// </summary>
- /// <value>The limit.</value>
- public int? Limit { get; set; }
- }
-}