You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
380 B
13 lines
380 B
namespace Jellyfin.Api.Models.PlaylistDtos;
|
|
|
|
/// <summary>
|
|
/// Update existing playlist user dto. Fields set to `null` will not be updated and keep their current values.
|
|
/// </summary>
|
|
public class UpdatePlaylistUserDto
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether the user can edit the playlist.
|
|
/// </summary>
|
|
public bool? CanEdit { get; set; }
|
|
}
|