2019-01-13 13:02:23 -07:00
|
|
|
using System;
|
2020-11-16 20:29:46 -07:00
|
|
|
using System.Collections.Generic;
|
2023-03-10 09:46:59 -07:00
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Playlists;
|
2018-12-27 16:27:57 -07:00
|
|
|
|
2023-03-10 09:46:59 -07:00
|
|
|
/// <summary>
|
|
|
|
/// A playlist creation request.
|
|
|
|
/// </summary>
|
|
|
|
public class PlaylistCreationRequest
|
2018-12-27 16:27:57 -07:00
|
|
|
{
|
2023-03-10 09:46:59 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the name.
|
|
|
|
/// </summary>
|
|
|
|
public string? Name { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the list of items.
|
|
|
|
/// </summary>
|
|
|
|
public IReadOnlyList<Guid> ItemIdList { get; set; } = Array.Empty<Guid>();
|
2018-12-27 16:27:57 -07:00
|
|
|
|
2023-03-10 09:46:59 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the media type.
|
|
|
|
/// </summary>
|
|
|
|
public string? MediaType { get; set; }
|
2018-12-27 16:27:57 -07:00
|
|
|
|
2023-03-10 09:46:59 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the user id.
|
|
|
|
/// </summary>
|
|
|
|
public Guid UserId { get; set; }
|
2018-12-27 16:27:57 -07:00
|
|
|
|
2023-03-10 09:46:59 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the shares.
|
|
|
|
/// </summary>
|
|
|
|
public Share[]? Shares { get; set; }
|
2018-12-27 16:27:57 -07:00
|
|
|
}
|