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.
31 lines
810 B
31 lines
810 B
using System;
|
|
|
|
namespace MediaBrowser.Model.Entities;
|
|
|
|
/// <summary>
|
|
/// Class to hold data on user permissions for playlists.
|
|
/// </summary>
|
|
public class PlaylistUserPermissions
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="PlaylistUserPermissions"/> class.
|
|
/// </summary>
|
|
/// <param name="userId">The user id.</param>
|
|
/// <param name="canEdit">Edit permission.</param>
|
|
public PlaylistUserPermissions(Guid userId, bool canEdit = false)
|
|
{
|
|
UserId = userId;
|
|
CanEdit = canEdit;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the user id.
|
|
/// </summary>
|
|
public Guid UserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether the user has edit permissions.
|
|
/// </summary>
|
|
public bool CanEdit { get; set; }
|
|
}
|