jellyfin/MediaBrowser.Model/Playlists/PlaylistCreationRequest.cs

21 lines
400 B
C#
Raw Normal View History

2018-12-27 21:43:48 +00:00
using System;
2018-12-27 23:27:57 +00:00
namespace MediaBrowser.Model.Playlists
{
public class PlaylistCreationRequest
{
2018-12-27 21:43:48 +00:00
public string Name { get; set; }
2018-12-27 23:27:57 +00:00
public Guid[] ItemIdList { get; set; }
public string MediaType { get; set; }
public Guid UserId { get; set; }
public PlaylistCreationRequest()
{
ItemIdList = Array.Empty<Guid>();
}
}
}