diff options
| author | Shadowghost <Ghost_of_Stone@web.de> | 2024-04-03 21:20:30 +0200 |
|---|---|---|
| committer | Shadowghost <Ghost_of_Stone@web.de> | 2024-04-03 21:20:30 +0200 |
| commit | e3897fe5ddc6013da43557f03b4836e5acfde18c (patch) | |
| tree | 9a79dfe612ef443d687964f94f412c6880a83eae /Jellyfin.Api/Models | |
| parent | 51e2faa448624a334128042cdca1e592ec97240e (diff) | |
Apply review suggestions
Diffstat (limited to 'Jellyfin.Api/Models')
| -rw-r--r-- | Jellyfin.Api/Models/PlaylistDtos/CreatePlaylistDto.cs | 2 | ||||
| -rw-r--r-- | Jellyfin.Api/Models/PlaylistDtos/UpdatePlaylistDto.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Jellyfin.Api/Models/PlaylistDtos/CreatePlaylistDto.cs b/Jellyfin.Api/Models/PlaylistDtos/CreatePlaylistDto.cs index 69694a769..3cbdd031a 100644 --- a/Jellyfin.Api/Models/PlaylistDtos/CreatePlaylistDto.cs +++ b/Jellyfin.Api/Models/PlaylistDtos/CreatePlaylistDto.cs @@ -41,5 +41,5 @@ public class CreatePlaylistDto /// <summary> /// Gets or sets a value indicating whether the playlist is public. /// </summary> - public bool Public { get; set; } = true; + public bool IsPublic { get; set; } = true; } diff --git a/Jellyfin.Api/Models/PlaylistDtos/UpdatePlaylistDto.cs b/Jellyfin.Api/Models/PlaylistDtos/UpdatePlaylistDto.cs index 0e109db3e..80e20995c 100644 --- a/Jellyfin.Api/Models/PlaylistDtos/UpdatePlaylistDto.cs +++ b/Jellyfin.Api/Models/PlaylistDtos/UpdatePlaylistDto.cs @@ -30,5 +30,5 @@ public class UpdatePlaylistDto /// <summary> /// Gets or sets a value indicating whether the playlist is public. /// </summary> - public bool? Public { get; set; } + public bool? IsPublic { get; set; } } |
