UpdatePlaylistUserDto.cs 380 B

123456789101112
  1. namespace Jellyfin.Api.Models.PlaylistDtos;
  2. /// <summary>
  3. /// Update existing playlist user dto. Fields set to `null` will not be updated and keep their current values.
  4. /// </summary>
  5. public class UpdatePlaylistUserDto
  6. {
  7. /// <summary>
  8. /// Gets or sets a value indicating whether the user can edit the playlist.
  9. /// </summary>
  10. public bool? CanEdit { get; set; }
  11. }