diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-21 01:10:58 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-21 01:10:58 -0500 |
| commit | 123528327974d9291f5868bb87a0d63437fa1ae5 (patch) | |
| tree | c201611062191638b47c0a60ed655acce20d1871 /MediaBrowser.Controller/Persistence | |
| parent | 92c76de2ba01608e37a3f7ba311d2711b2230dc8 (diff) | |
#680 - added auto organize page
Diffstat (limited to 'MediaBrowser.Controller/Persistence')
| -rw-r--r-- | MediaBrowser.Controller/Persistence/IFileOrganizationRepository.cs | 14 |
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> |
