diff options
| author | Shadowghost <Ghost_of_Stone@web.de> | 2024-03-26 16:13:07 +0100 |
|---|---|---|
| committer | Shadowghost <Ghost_of_Stone@web.de> | 2024-03-26 16:13:07 +0100 |
| commit | f1dc1610a28fdb2dec4241d233503b6e11020546 (patch) | |
| tree | 20e23ac1cb9702e349a3b453657130108dcb7790 /MediaBrowser.Model/Playlists | |
| parent | 88b3490d1756236d0c2fc00243420d45d149a5d1 (diff) | |
Extend playlist creation capabilities
Diffstat (limited to 'MediaBrowser.Model/Playlists')
| -rw-r--r-- | MediaBrowser.Model/Playlists/PlaylistCreationRequest.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Playlists/PlaylistCreationRequest.cs b/MediaBrowser.Model/Playlists/PlaylistCreationRequest.cs index 62d496d04..93eccd5c7 100644 --- a/MediaBrowser.Model/Playlists/PlaylistCreationRequest.cs +++ b/MediaBrowser.Model/Playlists/PlaylistCreationRequest.cs @@ -33,5 +33,10 @@ public class PlaylistCreationRequest /// <summary> /// Gets or sets the shares. /// </summary> - public Share[]? Shares { get; set; } + public IReadOnlyList<Share>? Shares { get; set; } + + /// <summary> + /// Gets or sets a value indicating whether open access is enabled. + /// </summary> + public bool? OpenAccess { get; set; } } |
