jellyfin/MediaBrowser.Controller/Playlists/PlaylistCreationOptions.cs
2014-08-01 22:34:45 -04:00

17 lines
341 B
C#

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