You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
560 B
25 lines
560 B
7 months ago
|
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; }
|
||
|
}
|