2014-08-01 19:34:45 -07:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2014-08-21 08:55:35 -07:00
|
|
|
|
namespace MediaBrowser.Model.Playlists
|
2014-08-01 19:34:45 -07:00
|
|
|
|
{
|
2014-08-21 08:55:35 -07:00
|
|
|
|
public class PlaylistCreationRequest
|
2014-08-01 19:34:45 -07:00
|
|
|
|
{
|
2014-08-21 08:55:35 -07:00
|
|
|
|
public string Name { get; set; }
|
2014-08-01 19:34:45 -07:00
|
|
|
|
|
2017-08-19 12:43:35 -07:00
|
|
|
|
public string[] ItemIdList { get; set; }
|
2014-08-01 19:34:45 -07:00
|
|
|
|
|
2014-08-02 19:16:37 -07:00
|
|
|
|
public string MediaType { get; set; }
|
|
|
|
|
|
|
|
|
|
public string UserId { get; set; }
|
|
|
|
|
|
2014-08-21 08:55:35 -07:00
|
|
|
|
public PlaylistCreationRequest()
|
2014-08-01 19:34:45 -07:00
|
|
|
|
{
|
2017-08-19 12:43:35 -07:00
|
|
|
|
ItemIdList = new string[] { };
|
2014-08-01 19:34:45 -07:00
|
|
|
|
}
|
2014-08-21 08:55:35 -07:00
|
|
|
|
}
|
2014-08-01 19:34:45 -07:00
|
|
|
|
}
|