diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-22 12:05:06 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-22 12:05:06 -0500 |
| commit | 9d40b684bf6af4e987e226c78c11d6daf6f5cd9b (patch) | |
| tree | 937312aa29772d0e042929798e936710fbc7c74c /MediaBrowser.Controller/Persistence/IFileOrganizationRepository.cs | |
| parent | cf1dac60f632646fa6ccdc715eee9fa5cf240bf3 (diff) | |
#680 - episode organization
Diffstat (limited to 'MediaBrowser.Controller/Persistence/IFileOrganizationRepository.cs')
| -rw-r--r-- | MediaBrowser.Controller/Persistence/IFileOrganizationRepository.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Persistence/IFileOrganizationRepository.cs b/MediaBrowser.Controller/Persistence/IFileOrganizationRepository.cs index 14d2081bb..f71784d82 100644 --- a/MediaBrowser.Controller/Persistence/IFileOrganizationRepository.cs +++ b/MediaBrowser.Controller/Persistence/IFileOrganizationRepository.cs @@ -35,5 +35,11 @@ namespace MediaBrowser.Controller.Persistence /// <param name="query">The query.</param> /// <returns>IEnumerable{FileOrganizationResult}.</returns> QueryResult<FileOrganizationResult> GetResults(FileOrganizationResultQuery query); + + /// <summary> + /// Deletes all. + /// </summary> + /// <returns>Task.</returns> + Task DeleteAll(); } } |
