namespace Jellyfin.Api.Models.PlaylistDtos;
///
/// Update existing playlist user dto. Fields set to `null` will not be updated and keep their current values.
///
public class UpdatePlaylistUserDto
{
///
/// Gets or sets a value indicating whether the user can edit the playlist.
///
public bool? CanEdit { get; set; }
}