jellyfin/MediaBrowser.Controller/Playlists/PlaylistCreationOptions.cs

17 lines
341 B
C#
Raw Normal View History

2014-08-02 04:34:45 +02:00
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>();
}
}
}