jellyfin/MediaBrowser.Controller/Playlists/PlaylistCreationOptions.cs

21 lines
432 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 string MediaType { get; set; }
public string UserId { get; set; }
2014-08-02 04:34:45 +02:00
public PlaylistCreationOptions()
{
ItemIdList = new List<string>();
}
}
}