aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Playlists/PlaylistUpdateRequest.cs
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2024-04-10 12:52:01 -0400
committerGitHub <noreply@github.com>2024-04-10 12:52:01 -0400
commitee1d6332ee720ceeccc7b051465ce61a6628b3dc (patch)
treec5fe5b5f3075bc69b1f0dcd499c3e95e365a3fbd /MediaBrowser.Model/Playlists/PlaylistUpdateRequest.cs
parentdc74bc361d586130ed04b24d85456013975d9f44 (diff)
parentddda30fe23a04e07401bc870ac33213ff8a34c71 (diff)
Merge pull request #11220 from Shadowghost/add-playlist-acl-api
Add playlist ACL endpoints
Diffstat (limited to 'MediaBrowser.Model/Playlists/PlaylistUpdateRequest.cs')
-rw-r--r--MediaBrowser.Model/Playlists/PlaylistUpdateRequest.cs41
1 files changed, 41 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Playlists/PlaylistUpdateRequest.cs b/MediaBrowser.Model/Playlists/PlaylistUpdateRequest.cs
new file mode 100644
index 0000000000..db290bbdbf
--- /dev/null
+++ b/MediaBrowser.Model/Playlists/PlaylistUpdateRequest.cs
@@ -0,0 +1,41 @@
+using System;
+using System.Collections.Generic;
+using MediaBrowser.Model.Entities;
+
+namespace MediaBrowser.Model.Playlists;
+
+/// <summary>
+/// A playlist update request.
+/// </summary>
+public class PlaylistUpdateRequest
+{
+ /// <summary>
+ /// Gets or sets the id of the playlist.
+ /// </summary>
+ public Guid Id { get; set; }
+
+ /// <summary>
+ /// Gets or sets the id of the user updating the playlist.
+ /// </summary>
+ public Guid UserId { get; set; }
+
+ /// <summary>
+ /// Gets or sets the name of the playlist.
+ /// </summary>
+ public string? Name { get; set; }
+
+ /// <summary>
+ /// Gets or sets item ids to add to the playlist.
+ /// </summary>
+ public IReadOnlyList<Guid>? Ids { get; set; }
+
+ /// <summary>
+ /// Gets or sets the playlist users.
+ /// </summary>
+ public IReadOnlyList<PlaylistUserPermissions>? Users { get; set; }
+
+ /// <summary>
+ /// Gets or sets a value indicating whether the playlist is public.
+ /// </summary>
+ public bool? Public { get; set; }
+}