diff options
| author | gion <oancaionutandrei@gmail.com> | 2020-05-06 23:42:53 +0200 |
|---|---|---|
| committer | gion <oancaionutandrei@gmail.com> | 2020-05-09 12:37:39 +0200 |
| commit | 8a6ec2fb713cb77e91d2fceea8b4fce8e7d17395 (patch) | |
| tree | cb070ad90c98e2b3fdcbb6aef95aa622e386c877 /MediaBrowser.Model/SyncPlay/JoinGroupRequest.cs | |
| parent | 6e22e9222b68ad117550c02a8cbce2d65878f50b (diff) | |
Rename Syncplay to SyncPlay
Diffstat (limited to 'MediaBrowser.Model/SyncPlay/JoinGroupRequest.cs')
| -rw-r--r-- | MediaBrowser.Model/SyncPlay/JoinGroupRequest.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/MediaBrowser.Model/SyncPlay/JoinGroupRequest.cs b/MediaBrowser.Model/SyncPlay/JoinGroupRequest.cs new file mode 100644 index 0000000000..d67b6bd555 --- /dev/null +++ b/MediaBrowser.Model/SyncPlay/JoinGroupRequest.cs @@ -0,0 +1,22 @@ +using System; + +namespace MediaBrowser.Model.SyncPlay +{ + /// <summary> + /// Class JoinGroupRequest. + /// </summary> + public class JoinGroupRequest + { + /// <summary> + /// Gets or sets the Group id. + /// </summary> + /// <value>The Group id to join.</value> + public Guid GroupId { get; set; } + + /// <summary> + /// Gets or sets the playing item id. + /// </summary> + /// <value>The client's currently playing item id.</value> + public Guid PlayingItemId { get; set; } + } +} |
