aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/FileSorting/FileSortingResult.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/FileSorting/FileSortingResult.cs')
-rw-r--r--MediaBrowser.Model/FileSorting/FileSortingResult.cs45
1 files changed, 0 insertions, 45 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
- }
-}