123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using System;
- using System.Collections.Generic;
- using Jellyfin.Data.Enums;
- using MediaBrowser.Model.Entities;
- namespace MediaBrowser.Model.Playlists;
- /// <summary>
- /// A playlist creation request.
- /// </summary>
- public class PlaylistCreationRequest
- {
- /// <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; } = [];
- /// <summary>
- /// Gets or sets the media type.
- /// </summary>
- public MediaType? MediaType { get; set; }
- /// <summary>
- /// Gets or sets the user id.
- /// </summary>
- public Guid UserId { get; set; }
- /// <summary>
- /// Gets or sets the user permissions.
- /// </summary>
- public IReadOnlyList<PlaylistUserPermissions> Users { get; set; } = [];
- /// <summary>
- /// Gets or sets a value indicating whether the playlist is public.
- /// </summary>
- public bool? Public { get; set; } = false;
- }
|