using System; namespace MediaBrowser.Model.FileOrganization { public class FileOrganizationResult { /// /// 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 } }