Change type of PlaylistItemId to Guid

This commit is contained in:
Ionut Andrei Oanca
2020-12-04 20:15:16 +01:00
parent b7eb4da04e
commit cbf70e7a03
20 changed files with 63 additions and 69 deletions

View File

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