update chromecast

This commit is contained in:
Luke Pulverenti
2014-08-21 11:55:35 -04:00
parent fda7ff5bf2
commit 76ed60605b
25 changed files with 311 additions and 188 deletions

View File

@@ -0,0 +1,20 @@
using System.Collections.Generic;
namespace MediaBrowser.Model.Playlists
{
public class PlaylistCreationRequest
{
public string Name { get; set; }
public List<string> ItemIdList { get; set; }
public string MediaType { get; set; }
public string UserId { get; set; }
public PlaylistCreationRequest()
{
ItemIdList = new List<string>();
}
}
}

View File

@@ -0,0 +1,37 @@
using MediaBrowser.Model.Querying;
namespace MediaBrowser.Model.Playlists
{
public class PlaylistItemQuery
{
/// <summary>
/// Gets or sets the identifier.
/// </summary>
/// <value>The identifier.</value>
public string Id { get; set; }
/// <summary>
/// Gets or sets the user identifier.
/// </summary>
/// <value>The user identifier.</value>
public string UserId { get; set; }
/// <summary>
/// Gets or sets the start index.
/// </summary>
/// <value>The start index.</value>
public int? StartIndex { get; set; }
/// <summary>
/// Gets or sets the limit.
/// </summary>
/// <value>The limit.</value>
public int? Limit { get; set; }
/// <summary>
/// Gets or sets the fields.
/// </summary>
/// <value>The fields.</value>
public ItemFields[] Fields { get; set; }
}
}