aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/IHasShares.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Entities/IHasShares.cs')
-rw-r--r--MediaBrowser.Model/Entities/IHasShares.cs6
1 files changed, 4 insertions, 2 deletions
diff --git a/MediaBrowser.Model/Entities/IHasShares.cs b/MediaBrowser.Model/Entities/IHasShares.cs
index b34d1a037..8c4ba6c42 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<PlaylistUserPermissions> Shares { get; set; }
}