diff options
| author | Shadowghost <Ghost_of_Stone@web.de> | 2024-03-26 15:29:48 +0100 |
|---|---|---|
| committer | Shadowghost <Ghost_of_Stone@web.de> | 2024-03-26 15:49:18 +0100 |
| commit | 88b3490d1756236d0c2fc00243420d45d149a5d1 (patch) | |
| tree | 6d793ccd54c92b984d5be072a5c358b67f5a49ce /MediaBrowser.Model/Entities | |
| parent | 2e9aa146a56472af4dc285a2d2c70f58b41035e1 (diff) | |
Add playlist ACL endpoints
Diffstat (limited to 'MediaBrowser.Model/Entities')
| -rw-r--r-- | MediaBrowser.Model/Entities/IHasShares.cs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/MediaBrowser.Model/Entities/IHasShares.cs b/MediaBrowser.Model/Entities/IHasShares.cs index b34d1a0376..31574a3ffa 100644 --- a/MediaBrowser.Model/Entities/IHasShares.cs +++ b/MediaBrowser.Model/Entities/IHasShares.cs @@ -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; } } |
