jellyfin/MediaBrowser.Model/Playlists/PlaylistCreationRequest.cs

20 lines
409 B
C#
Raw Normal View History

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