using System; namespace MediaBrowser.Model.Playlists; /// /// A playlist user update request. /// public class PlaylistUserUpdateRequest { /// /// Gets or sets the id of the playlist. /// public Guid Id { get; set; } /// /// Gets or sets the id of the updated user. /// public Guid UserId { get; set; } /// /// Gets or sets a value indicating whether the user can edit the playlist. /// public bool? CanEdit { get; set; } }