diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-20 11:09:53 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-20 11:09:53 -0500 |
| commit | c798529caca49ef8c323c0e003dd9f4ba0394b5a (patch) | |
| tree | 635794b946774e151976f5a36327ecd10a88caf7 /MediaBrowser.Model/FileOrganization/FileOrganizationQuery.cs | |
| parent | 5917d66172bb870102778222919575df6aa72dda (diff) | |
#680 - Support new episode file sorting
Diffstat (limited to 'MediaBrowser.Model/FileOrganization/FileOrganizationQuery.cs')
| -rw-r--r-- | MediaBrowser.Model/FileOrganization/FileOrganizationQuery.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/MediaBrowser.Model/FileOrganization/FileOrganizationQuery.cs b/MediaBrowser.Model/FileOrganization/FileOrganizationQuery.cs new file mode 100644 index 000000000..18287534e --- /dev/null +++ b/MediaBrowser.Model/FileOrganization/FileOrganizationQuery.cs @@ -0,0 +1,18 @@ + +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; } + } +} |
