aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/FileOrganization/FileOrganizationResult.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/FileOrganization/FileOrganizationResult.cs')
-rw-r--r--MediaBrowser.Model/FileOrganization/FileOrganizationResult.cs39
1 files changed, 38 insertions, 1 deletions
diff --git a/MediaBrowser.Model/FileOrganization/FileOrganizationResult.cs b/MediaBrowser.Model/FileOrganization/FileOrganizationResult.cs
index 505f0e2da..ca912ed63 100644
--- a/MediaBrowser.Model/FileOrganization/FileOrganizationResult.cs
+++ b/MediaBrowser.Model/FileOrganization/FileOrganizationResult.cs
@@ -5,12 +5,36 @@ namespace MediaBrowser.Model.FileOrganization
public class FileOrganizationResult
{
/// <summary>
+ /// Gets or sets the result identifier.
+ /// </summary>
+ /// <value>The result identifier.</value>
+ public string Id { get; set; }
+
+ /// <summary>
/// Gets or sets the original path.
/// </summary>
/// <value>The original path.</value>
public string OriginalPath { get; set; }
/// <summary>
+ /// Gets or sets the name of the original file.
+ /// </summary>
+ /// <value>The name of the original file.</value>
+ public string OriginalFileName { get; set; }
+
+ /// <summary>
+ /// Gets or sets the name of the extracted.
+ /// </summary>
+ /// <value>The name of the extracted.</value>
+ public string ExtractedName { get; set; }
+
+ /// <summary>
+ /// Gets or sets the extracted year.
+ /// </summary>
+ /// <value>The extracted year.</value>
+ public int? ExtractedYear { get; set; }
+
+ /// <summary>
/// Gets or sets the target path.
/// </summary>
/// <value>The target path.</value>
@@ -26,13 +50,19 @@ namespace MediaBrowser.Model.FileOrganization
/// Gets or sets the error message.
/// </summary>
/// <value>The error message.</value>
- public string ErrorMessage { get; set; }
+ public string StatusMessage { get; set; }
/// <summary>
/// Gets or sets the status.
/// </summary>
/// <value>The status.</value>
public FileSortingStatus Status { get; set; }
+
+ /// <summary>
+ /// Gets or sets the type.
+ /// </summary>
+ /// <value>The type.</value>
+ public FileOrganizerType Type { get; set; }
}
public enum FileSortingStatus
@@ -42,4 +72,11 @@ namespace MediaBrowser.Model.FileOrganization
SkippedExisting,
SkippedTrial
}
+
+ public enum FileOrganizerType
+ {
+ Movie,
+ Episode,
+ Song
+ }
}