2014-08-02 02:34:45 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2014-08-21 15:55:35 +00:00
|
|
|
|
namespace MediaBrowser.Model.Playlists
|
2014-08-02 02:34:45 +00:00
|
|
|
|
{
|
2014-08-21 15:55:35 +00:00
|
|
|
|
public class PlaylistCreationRequest
|
2014-08-02 02:34:45 +00:00
|
|
|
|
{
|
2014-08-21 15:55:35 +00:00
|
|
|
|
public string Name { get; set; }
|
2014-08-02 02:34:45 +00:00
|
|
|
|
|
|
|
|
|
public List<string> ItemIdList { get; set; }
|
|
|
|
|
|
2014-08-03 02:16:37 +00:00
|
|
|
|
public string MediaType { get; set; }
|
|
|
|
|
|
|
|
|
|
public string UserId { get; set; }
|
|
|
|
|
|
2014-08-21 15:55:35 +00:00
|
|
|
|
public PlaylistCreationRequest()
|
2014-08-02 02:34:45 +00:00
|
|
|
|
{
|
|
|
|
|
ItemIdList = new List<string>();
|
|
|
|
|
}
|
2014-08-21 15:55:35 +00:00
|
|
|
|
}
|
2014-08-02 02:34:45 +00:00
|
|
|
|
}
|