mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-27 02:56:54 +01:00
Apply review suggestions
This commit is contained in:
@@ -5,7 +5,7 @@ using MediaBrowser.Model.Entities;
|
||||
namespace MediaBrowser.Model.Playlists;
|
||||
|
||||
/// <summary>
|
||||
/// A playlist creation request.
|
||||
/// A playlist update request.
|
||||
/// </summary>
|
||||
public class PlaylistUpdateRequest
|
||||
{
|
||||
|
||||
24
MediaBrowser.Model/Playlists/PlaylistUserUpdateRequest.cs
Normal file
24
MediaBrowser.Model/Playlists/PlaylistUserUpdateRequest.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
|
||||
namespace MediaBrowser.Model.Playlists;
|
||||
|
||||
/// <summary>
|
||||
/// A playlist user update request.
|
||||
/// </summary>
|
||||
public class PlaylistUserUpdateRequest
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the id of the playlist.
|
||||
/// </summary>
|
||||
public Guid Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the id of the updated user.
|
||||
/// </summary>
|
||||
public Guid UserId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether the user can edit the playlist.
|
||||
/// </summary>
|
||||
public bool? CanEdit { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user