aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/FileOrganization/IFileOrganizationService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Controller/FileOrganization/IFileOrganizationService.cs')
-rw-r--r--MediaBrowser.Controller/FileOrganization/IFileOrganizationService.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/FileOrganization/IFileOrganizationService.cs b/MediaBrowser.Controller/FileOrganization/IFileOrganizationService.cs
index 993c04c28..58a612508 100644
--- a/MediaBrowser.Controller/FileOrganization/IFileOrganizationService.cs
+++ b/MediaBrowser.Controller/FileOrganization/IFileOrganizationService.cs
@@ -1,5 +1,5 @@
using MediaBrowser.Model.FileOrganization;
-using System.Collections.Generic;
+using MediaBrowser.Model.Querying;
using System.Threading;
using System.Threading.Tasks;
@@ -25,6 +25,6 @@ namespace MediaBrowser.Controller.FileOrganization
/// </summary>
/// <param name="query">The query.</param>
/// <returns>IEnumerable{FileOrganizationResult}.</returns>
- IEnumerable<FileOrganizationResult> GetResults(FileOrganizationResultQuery query);
+ QueryResult<FileOrganizationResult> GetResults(FileOrganizationResultQuery query);
}
}