diff options
| author | Ionut Andrei Oanca <oancaionutandrei@gmail.com> | 2020-10-21 16:42:57 +0200 |
|---|---|---|
| committer | Ionut Andrei Oanca <oancaionutandrei@gmail.com> | 2020-10-21 16:42:57 +0200 |
| commit | 36fee4e60a033d8d785e62788aaf00999d497c58 (patch) | |
| tree | d027211df6ba4f4991967831d38eccb954a4365b /MediaBrowser.Model/SyncPlay | |
| parent | 93cbf64f884688b667c5403412cb8193dadb251c (diff) | |
Minor fixes
Diffstat (limited to 'MediaBrowser.Model/SyncPlay')
| -rw-r--r-- | MediaBrowser.Model/SyncPlay/GroupUpdateType.cs | 2 | ||||
| -rw-r--r-- | MediaBrowser.Model/SyncPlay/JoinGroupRequest.cs | 4 | ||||
| -rw-r--r-- | MediaBrowser.Model/SyncPlay/QueueItem.cs | 8 | ||||
| -rw-r--r-- | MediaBrowser.Model/SyncPlay/SendCommand.cs | 4 |
4 files changed, 9 insertions, 9 deletions
diff --git a/MediaBrowser.Model/SyncPlay/GroupUpdateType.cs b/MediaBrowser.Model/SyncPlay/GroupUpdateType.cs index 7423bff11..907d1defe 100644 --- a/MediaBrowser.Model/SyncPlay/GroupUpdateType.cs +++ b/MediaBrowser.Model/SyncPlay/GroupUpdateType.cs @@ -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, diff --git a/MediaBrowser.Model/SyncPlay/JoinGroupRequest.cs b/MediaBrowser.Model/SyncPlay/JoinGroupRequest.cs index 04f3a73b1..27a29b899 100644 --- a/MediaBrowser.Model/SyncPlay/JoinGroupRequest.cs +++ b/MediaBrowser.Model/SyncPlay/JoinGroupRequest.cs @@ -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; } } } diff --git a/MediaBrowser.Model/SyncPlay/QueueItem.cs b/MediaBrowser.Model/SyncPlay/QueueItem.cs index dc9cfbc22..ce253b182 100644 --- a/MediaBrowser.Model/SyncPlay/QueueItem.cs +++ b/MediaBrowser.Model/SyncPlay/QueueItem.cs @@ -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; } } } diff --git a/MediaBrowser.Model/SyncPlay/SendCommand.cs b/MediaBrowser.Model/SyncPlay/SendCommand.cs index 779f711af..b24f7e97b 100644 --- a/MediaBrowser.Model/SyncPlay/SendCommand.cs +++ b/MediaBrowser.Model/SyncPlay/SendCommand.cs @@ -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> |
