Minor fixes

This commit is contained in:
Ionut Andrei Oanca
2020-10-21 16:42:57 +02:00
parent 93cbf64f88
commit 36fee4e60a
20 changed files with 68 additions and 68 deletions

View File

@@ -31,7 +31,7 @@ namespace MediaBrowser.Model.SyncPlay
StateUpdate,
/// <summary>
/// The play-queue update. Tells a user what's the playing queue of the group.
/// The play-queue update. Tells a user the playing queue of the group.
/// </summary>
PlayQueue,

View File

@@ -8,9 +8,9 @@ namespace MediaBrowser.Model.SyncPlay
public class JoinGroupRequest
{
/// <summary>
/// Gets or sets the group id.
/// Gets or sets the group identifier.
/// </summary>
/// <value>The id of the group to join.</value>
/// <value>The identifier of the group to join.</value>
public Guid GroupId { get; set; }
}
}

View File

@@ -10,15 +10,15 @@ namespace MediaBrowser.Model.SyncPlay
public class QueueItem
{
/// <summary>
/// Gets or sets the item id.
/// Gets or sets the item identifier.
/// </summary>
/// <value>The item id.</value>
/// <value>The item identifier.</value>
public Guid ItemId { get; set; }
/// <summary>
/// Gets or sets the playlist id of the item.
/// Gets or sets the playlist identifier of the item.
/// </summary>
/// <value>The playlist id of the item.</value>
/// <value>The playlist identifier of the item.</value>
public string PlaylistItemId { get; set; }
}
}

View File

@@ -14,9 +14,9 @@ namespace MediaBrowser.Model.SyncPlay
public string GroupId { get; set; }
/// <summary>
/// Gets or sets the playlist id of the playing item.
/// Gets or sets the playlist identifier of the playing item.
/// </summary>
/// <value>The playlist id of the playing item.</value>
/// <value>The playlist identifier of the playing item.</value>
public string PlaylistItemId { get; set; }
/// <summary>