jellyfin/MediaBrowser.Model/Playlists/PlaylistCreationRequest.cs

21 lines
427 B
C#
Raw Normal View History

2014-08-02 04:34:45 +02:00
using System.Collections.Generic;
2014-08-21 17:55:35 +02:00
namespace MediaBrowser.Model.Playlists
2014-08-02 04:34:45 +02:00
{
2014-08-21 17:55:35 +02:00
public class PlaylistCreationRequest
2014-08-02 04:34:45 +02:00
{
2014-08-21 17:55:35 +02:00
public string Name { get; set; }
2014-08-02 04:34:45 +02:00
public List<string> ItemIdList { get; set; }
public string MediaType { get; set; }
public string UserId { get; set; }
2014-08-21 17:55:35 +02:00
public PlaylistCreationRequest()
2014-08-02 04:34:45 +02:00
{
ItemIdList = new List<string>();
}
2014-08-21 17:55:35 +02:00
}
2014-08-02 04:34:45 +02:00
}