Files
jellyfin-jellyfin-1/Jellyfin.Api/Models/PlaylistDtos/UpdatePlaylistDto.cs

35 lines
1010 B
C#
Raw Normal View History

2024-04-01 20:43:05 +02:00
using System;
using System.Collections.Generic;
using System.Text.Json.Serialization;
using Jellyfin.Extensions.Json.Converters;
using MediaBrowser.Model.Entities;
namespace Jellyfin.Api.Models.PlaylistDtos;
/// <summary>
2024-04-02 08:08:36 +02:00
/// Update existing playlist dto. Fields set to `null` will not be updated and keep their current values.
2024-04-01 20:43:05 +02:00
/// </summary>
public class UpdatePlaylistDto
{
/// <summary>
/// Gets or sets the name of the new playlist.
/// </summary>
public string? Name { get; set; }
/// <summary>
/// Gets or sets item ids of the playlist.
/// </summary>
[JsonConverter(typeof(JsonCommaDelimitedArrayConverterFactory))]
public IReadOnlyList<Guid>? Ids { get; set; }
/// <summary>
/// Gets or sets the playlist users.
/// </summary>
public IReadOnlyList<PlaylistUserPermissions>? Users { get; set; }
/// <summary>
/// Gets or sets a value indicating whether the playlist is public.
/// </summary>
2024-04-03 21:20:30 +02:00
public bool? IsPublic { get; set; }
2024-04-01 20:43:05 +02:00
}