aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/FileOrganization/FileOrganizationResultQuery.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-07-27 01:18:39 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-07-27 01:18:39 -0400
commitd270b10db67eeaa16a35920d5d86b1975dfffd16 (patch)
tree8ecb86ddaf4f5ac495ba64ff16fcfb682ec4ea40 /MediaBrowser.Model/FileOrganization/FileOrganizationResultQuery.cs
parent6652d856f9047b7669b3b00ea5c8cc42ba05256a (diff)
move auto-organize to plugin
Diffstat (limited to 'MediaBrowser.Model/FileOrganization/FileOrganizationResultQuery.cs')
-rw-r--r--MediaBrowser.Model/FileOrganization/FileOrganizationResultQuery.cs18
1 files changed, 0 insertions, 18 deletions
diff --git a/MediaBrowser.Model/FileOrganization/FileOrganizationResultQuery.cs b/MediaBrowser.Model/FileOrganization/FileOrganizationResultQuery.cs
deleted file mode 100644
index 18287534e..000000000
--- a/MediaBrowser.Model/FileOrganization/FileOrganizationResultQuery.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-
-namespace MediaBrowser.Model.FileOrganization
-{
- public class FileOrganizationResultQuery
- {
- /// <summary>
- /// Skips over a given number of items within the results. Use for paging.
- /// </summary>
- /// <value>The start index.</value>
- public int? StartIndex { get; set; }
-
- /// <summary>
- /// The maximum number of items to return
- /// </summary>
- /// <value>The limit.</value>
- public int? Limit { get; set; }
- }
-}