From 8e7b97db521913cca9043e1fe1b1edb857053af3 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Thu, 23 Jan 2014 16:09:00 -0500 Subject: fixes #687 - Enable/disable live tv per user --- .../FileOrganization/FileOrganizationResult.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'MediaBrowser.Model/FileOrganization') diff --git a/MediaBrowser.Model/FileOrganization/FileOrganizationResult.cs b/MediaBrowser.Model/FileOrganization/FileOrganizationResult.cs index d2d52f4aa..e01df6d94 100644 --- a/MediaBrowser.Model/FileOrganization/FileOrganizationResult.cs +++ b/MediaBrowser.Model/FileOrganization/FileOrganizationResult.cs @@ -1,4 +1,5 @@ using System; +using System.Collections.Generic; namespace MediaBrowser.Model.FileOrganization { @@ -81,6 +82,17 @@ namespace MediaBrowser.Model.FileOrganization /// /// The type. public FileOrganizerType Type { get; set; } + + /// + /// Gets or sets the duplicate paths. + /// + /// The duplicate paths. + public List DuplicatePaths { get; set; } + + public FileOrganizationResult() + { + DuplicatePaths = new List(); + } } public enum FileSortingStatus -- cgit v1.2.3