Add playlist ACL endpoints

This commit is contained in:
Shadowghost
2024-03-26 15:29:48 +01:00
parent 2e9aa146a5
commit 88b3490d17
6 changed files with 235 additions and 47 deletions

View File

@@ -1,4 +1,6 @@
namespace MediaBrowser.Model.Entities;
using System.Collections.Generic;
namespace MediaBrowser.Model.Entities;
/// <summary>
/// Interface for access to shares.
@@ -8,5 +10,5 @@ public interface IHasShares
/// <summary>
/// Gets or sets the shares.
/// </summary>
Share[] Shares { get; set; }
IReadOnlyList<Share> Shares { get; set; }
}