PlaylistUserUpdateRequest.cs 560 B

123456789101112131415161718192021222324
  1. using System;
  2. namespace MediaBrowser.Model.Playlists;
  3. /// <summary>
  4. /// A playlist user update request.
  5. /// </summary>
  6. public class PlaylistUserUpdateRequest
  7. {
  8. /// <summary>
  9. /// Gets or sets the id of the playlist.
  10. /// </summary>
  11. public Guid Id { get; set; }
  12. /// <summary>
  13. /// Gets or sets the id of the updated user.
  14. /// </summary>
  15. public Guid UserId { get; set; }
  16. /// <summary>
  17. /// Gets or sets a value indicating whether the user can edit the playlist.
  18. /// </summary>
  19. public bool? CanEdit { get; set; }
  20. }