jellyfin/MediaBrowser.Controller/Playlists/Playlist.cs

21 lines
496 B
C#
Raw Normal View History

2014-08-02 02:34:45 +00:00
using MediaBrowser.Controller.Entities;
using System.Collections.Generic;
namespace MediaBrowser.Controller.Playlists
{
public class Playlist : Folder
{
public List<string> ItemIds { get; set; }
public Playlist()
{
ItemIds = new List<string>();
}
public override IEnumerable<BaseItem> GetChildren(User user, bool includeLinkedChildren)
{
return base.GetChildren(user, includeLinkedChildren);
}
}
}