2020-04-05 09:10:56 -07:00
|
|
|
#nullable disable
|
2020-02-03 17:49:27 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 13:02:23 -07:00
|
|
|
using System;
|
2020-11-16 20:29:46 -07:00
|
|
|
using System.Collections.Generic;
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Playlists
|
|
|
|
{
|
|
|
|
public class PlaylistCreationRequest
|
|
|
|
{
|
2018-12-27 14:43:48 -07:00
|
|
|
public string Name { get; set; }
|
2018-12-27 16:27:57 -07:00
|
|
|
|
2020-11-16 20:29:46 -07:00
|
|
|
public IReadOnlyList<Guid> ItemIdList { get; set; } = Array.Empty<Guid>();
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
public string MediaType { get; set; }
|
|
|
|
|
|
|
|
public Guid UserId { get; set; }
|
|
|
|
}
|
|
|
|
}
|