diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-19 13:08:17 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-19 13:08:17 -0500 |
| commit | d4bdd42acfda160e0a78ac302adc92802b237584 (patch) | |
| tree | 733a2b638b5e8db31fa69b6c2d06c0366dba1808 /MediaBrowser.Model/FileSorting/FileSortingResult.cs | |
| parent | 28c88174ae4c5f5ff15bf4004684d949d54c30e9 (diff) | |
#680 - Support new episode file sorting added dummy results repository
Diffstat (limited to 'MediaBrowser.Model/FileSorting/FileSortingResult.cs')
| -rw-r--r-- | MediaBrowser.Model/FileSorting/FileSortingResult.cs | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/MediaBrowser.Model/FileSorting/FileSortingResult.cs b/MediaBrowser.Model/FileSorting/FileSortingResult.cs new file mode 100644 index 000000000..43c5e7ede --- /dev/null +++ b/MediaBrowser.Model/FileSorting/FileSortingResult.cs @@ -0,0 +1,45 @@ +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 + } +} |
