graphical display of latest recordings

This commit is contained in:
Luke Pulverenti
2013-12-28 18:09:24 -05:00
parent c3532d7949
commit 052e632a97
4 changed files with 42 additions and 10 deletions

View File

@@ -28,6 +28,18 @@
/// </summary>
/// <value>The group identifier.</value>
public string GroupId { get; set; }
/// <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; }
}
public class RecordingGroupQuery