aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/SyncPlay/SendCommand.cs
diff options
context:
space:
mode:
authorIonut Andrei Oanca <oancaionutandrei@gmail.com>2020-12-04 20:15:16 +0100
committerIonut Andrei Oanca <oancaionutandrei@gmail.com>2020-12-04 20:15:16 +0100
commitcbf70e7a037f9edb431cf0e0f43b261b9a1cf203 (patch)
tree087038c4a183c6b7c39654ef14aa4180be3ea60e /MediaBrowser.Model/SyncPlay/SendCommand.cs
parentb7eb4da04e0cbb820becc9022975f69aed4f8531 (diff)
Change type of PlaylistItemId to Guid
Diffstat (limited to 'MediaBrowser.Model/SyncPlay/SendCommand.cs')
-rw-r--r--MediaBrowser.Model/SyncPlay/SendCommand.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Model/SyncPlay/SendCommand.cs b/MediaBrowser.Model/SyncPlay/SendCommand.cs
index ab4c64130c..73cb50876d 100644
--- a/MediaBrowser.Model/SyncPlay/SendCommand.cs
+++ b/MediaBrowser.Model/SyncPlay/SendCommand.cs
@@ -16,7 +16,7 @@ namespace MediaBrowser.Model.SyncPlay
/// <param name="command">The command.</param>
/// <param name="positionTicks">The position ticks, for commands that require it.</param>
/// <param name="emittedAt">The UTC time when this command has been emitted.</param>
- public SendCommand(Guid groupId, string playlistItemId, DateTime when, SendCommandType command, long? positionTicks, DateTime emittedAt)
+ public SendCommand(Guid groupId, Guid playlistItemId, DateTime when, SendCommandType command, long? positionTicks, DateTime emittedAt)
{
GroupId = groupId;
PlaylistItemId = playlistItemId;
@@ -36,7 +36,7 @@ namespace MediaBrowser.Model.SyncPlay
/// Gets the playlist identifier of the playing item.
/// </summary>
/// <value>The playlist identifier of the playing item.</value>
- public string PlaylistItemId { get; }
+ public Guid PlaylistItemId { get; }
/// <summary>
/// Gets or sets the UTC time when to execute the command.