#680 - Support new episode file sorting added dummy results repository

This commit is contained in:
Luke Pulverenti
2014-01-19 13:08:17 -05:00
parent 28c88174ae
commit d4bdd42acf
12 changed files with 244 additions and 25 deletions

View File

@@ -0,0 +1,18 @@

namespace MediaBrowser.Model.FileSorting
{
public class FileSortingResultQuery
{
/// <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; }
}
}