Fix playlist creation and removal

This commit is contained in:
Shadowghost
2023-03-10 17:46:59 +01:00
parent 6351d1022b
commit 76ae599bd3
11 changed files with 137 additions and 54 deletions

View File

@@ -1,11 +0,0 @@
#nullable disable
#pragma warning disable CA1819, CS1591
namespace MediaBrowser.Controller.Entities
{
public interface IHasShares
{
Share[] Shares { get; set; }
}
}

View File

@@ -1,13 +0,0 @@
#nullable disable
#pragma warning disable CS1591
namespace MediaBrowser.Controller.Entities
{
public class Share
{
public string UserId { get; set; }
public bool CanEdit { get; set; }
}
}