mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-27 19:24:47 +03:00
Change type of PlaylistItemId to Guid
This commit is contained in:
@@ -12,7 +12,7 @@ namespace Jellyfin.Api.Models.SyncPlayDtos
|
||||
/// </summary>
|
||||
public ReadyRequestDto()
|
||||
{
|
||||
PlaylistItemId = string.Empty;
|
||||
PlaylistItemId = Guid.Empty;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -37,6 +37,6 @@ namespace Jellyfin.Api.Models.SyncPlayDtos
|
||||
/// Gets or sets the playlist item identifier of the playing item.
|
||||
/// </summary>
|
||||
/// <value>The playlist item identifier.</value>
|
||||
public string PlaylistItemId { get; set; }
|
||||
public Guid PlaylistItemId { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user