aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Persistence
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-01-21 01:10:58 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-01-21 01:10:58 -0500
commit123528327974d9291f5868bb87a0d63437fa1ae5 (patch)
treec201611062191638b47c0a60ed655acce20d1871 /MediaBrowser.Controller/Persistence
parent92c76de2ba01608e37a3f7ba311d2711b2230dc8 (diff)
#680 - added auto organize page
Diffstat (limited to 'MediaBrowser.Controller/Persistence')
-rw-r--r--MediaBrowser.Controller/Persistence/IFileOrganizationRepository.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Persistence/IFileOrganizationRepository.cs b/MediaBrowser.Controller/Persistence/IFileOrganizationRepository.cs
index 47cfcb56e..14d2081bb 100644
--- a/MediaBrowser.Controller/Persistence/IFileOrganizationRepository.cs
+++ b/MediaBrowser.Controller/Persistence/IFileOrganizationRepository.cs
@@ -16,6 +16,20 @@ namespace MediaBrowser.Controller.Persistence
Task SaveResult(FileOrganizationResult result, CancellationToken cancellationToken);
/// <summary>
+ /// Deletes the specified identifier.
+ /// </summary>
+ /// <param name="id">The identifier.</param>
+ /// <returns>Task.</returns>
+ Task Delete(string id);
+
+ /// <summary>
+ /// Gets the result.
+ /// </summary>
+ /// <param name="id">The identifier.</param>
+ /// <returns>FileOrganizationResult.</returns>
+ FileOrganizationResult GetResult(string id);
+
+ /// <summary>
/// Gets the results.
/// </summary>
/// <param name="query">The query.</param>