aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models
diff options
context:
space:
mode:
Diffstat (limited to 'Jellyfin.Api/Models')
-rw-r--r--Jellyfin.Api/Models/PlaylistDtos/CreatePlaylistDto.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/Jellyfin.Api/Models/PlaylistDtos/CreatePlaylistDto.cs b/Jellyfin.Api/Models/PlaylistDtos/CreatePlaylistDto.cs
index a82bff65e..6eedd2131 100644
--- a/Jellyfin.Api/Models/PlaylistDtos/CreatePlaylistDto.cs
+++ b/Jellyfin.Api/Models/PlaylistDtos/CreatePlaylistDto.cs
@@ -15,7 +15,7 @@ public class CreatePlaylistDto
/// <summary>
/// Gets or sets the name of the new playlist.
/// </summary>
- public string? Name { get; set; }
+ public required string Name { get; set; }
/// <summary>
/// Gets or sets item ids to add to the playlist.
@@ -34,12 +34,12 @@ public class CreatePlaylistDto
public MediaType? MediaType { get; set; }
/// <summary>
- /// Gets or sets the shares.
+ /// Gets or sets the playlist users.
/// </summary>
- public IReadOnlyList<Share> Shares { get; set; } = [];
+ public IReadOnlyList<UserPermissions> Users { get; set; } = [];
/// <summary>
- /// Gets or sets a value indicating whether open access is enabled.
+ /// Gets or sets a value indicating whether the playlist is public.
/// </summary>
- public bool OpenAccess { get; set; }
+ public bool Public { get; set; } = true;
}