using System.Collections.Generic; namespace MediaBrowser.Controller.Playlists { public class PlaylistCreationOptions { public string Name { get; set; } public List ItemIdList { get; set; } public PlaylistCreationOptions() { ItemIdList = new List(); } } }