jellyfin/MediaBrowser.Model/Playlists/PlaylistCreationRequest.cs

21 lines
421 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
2017-08-19 21:43:35 +02:00
public string[] ItemIdList { get; set; }
2014-08-02 04:34:45 +02:00
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
{
2017-08-19 21:43:35 +02:00
ItemIdList = new string[] { };
2014-08-02 04:34:45 +02:00
}
2014-08-21 17:55:35 +02:00
}
2014-08-02 04:34:45 +02:00
}