jellyfin/MediaBrowser.Model/Playlists/PlaylistCreationRequest.cs

20 lines
409 B
C#
Raw Normal View History

#nullable disable
2020-02-03 19:49:27 -05:00
#pragma warning disable CS1591
using System;
using System.Collections.Generic;
2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Model.Playlists
{
public class PlaylistCreationRequest
{
2018-12-27 16:43:48 -05:00
public string Name { get; set; }
2018-12-27 18:27:57 -05:00
public IReadOnlyList<Guid> ItemIdList { get; set; } = Array.Empty<Guid>();
2018-12-27 18:27:57 -05:00
public string MediaType { get; set; }
public Guid UserId { get; set; }
}
}