From d270b10db67eeaa16a35920d5d86b1975dfffd16 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Thu, 27 Jul 2017 01:18:39 -0400 Subject: move auto-organize to plugin --- .../Persistence/IFileOrganizationRepository.cs | 45 ---------------------- 1 file changed, 45 deletions(-) delete mode 100644 MediaBrowser.Controller/Persistence/IFileOrganizationRepository.cs (limited to 'MediaBrowser.Controller/Persistence/IFileOrganizationRepository.cs') diff --git a/MediaBrowser.Controller/Persistence/IFileOrganizationRepository.cs b/MediaBrowser.Controller/Persistence/IFileOrganizationRepository.cs deleted file mode 100644 index f71784d82..000000000 --- a/MediaBrowser.Controller/Persistence/IFileOrganizationRepository.cs +++ /dev/null @@ -1,45 +0,0 @@ -using MediaBrowser.Model.FileOrganization; -using MediaBrowser.Model.Querying; -using System.Threading; -using System.Threading.Tasks; - -namespace MediaBrowser.Controller.Persistence -{ - public interface IFileOrganizationRepository - { - /// - /// Saves the result. - /// - /// The result. - /// The cancellation token. - /// Task. - Task SaveResult(FileOrganizationResult result, CancellationToken cancellationToken); - - /// - /// Deletes the specified identifier. - /// - /// The identifier. - /// Task. - Task Delete(string id); - - /// - /// Gets the result. - /// - /// The identifier. - /// FileOrganizationResult. - FileOrganizationResult GetResult(string id); - - /// - /// Gets the results. - /// - /// The query. - /// IEnumerable{FileOrganizationResult}. - QueryResult GetResults(FileOrganizationResultQuery query); - - /// - /// Deletes all. - /// - /// Task. - Task DeleteAll(); - } -} -- cgit v1.2.3