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