Extend playlist creation capabilities

This commit is contained in:
Shadowghost
2024-03-26 16:13:07 +01:00
parent 88b3490d17
commit f1dc1610a2
4 changed files with 24 additions and 10 deletions

View File

@@ -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; }
}