aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/SyncPlay/GroupInfoView.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/SyncPlay/GroupInfoView.cs')
-rw-r--r--MediaBrowser.Model/SyncPlay/GroupInfoView.cs42
1 files changed, 0 insertions, 42 deletions
diff --git a/MediaBrowser.Model/SyncPlay/GroupInfoView.cs b/MediaBrowser.Model/SyncPlay/GroupInfoView.cs
deleted file mode 100644
index f4c685998..000000000
--- a/MediaBrowser.Model/SyncPlay/GroupInfoView.cs
+++ /dev/null
@@ -1,42 +0,0 @@
-#nullable disable
-
-using System.Collections.Generic;
-
-namespace MediaBrowser.Model.SyncPlay
-{
- /// <summary>
- /// Class GroupInfoView.
- /// </summary>
- public class GroupInfoView
- {
- /// <summary>
- /// Gets or sets the group identifier.
- /// </summary>
- /// <value>The group identifier.</value>
- public string GroupId { get; set; }
-
- /// <summary>
- /// Gets or sets the playing item id.
- /// </summary>
- /// <value>The playing item id.</value>
- public string PlayingItemId { get; set; }
-
- /// <summary>
- /// Gets or sets the playing item name.
- /// </summary>
- /// <value>The playing item name.</value>
- public string PlayingItemName { get; set; }
-
- /// <summary>
- /// Gets or sets the position ticks.
- /// </summary>
- /// <value>The position ticks.</value>
- public long PositionTicks { get; set; }
-
- /// <summary>
- /// Gets or sets the participants.
- /// </summary>
- /// <value>The participants.</value>
- public IReadOnlyList<string> Participants { get; set; }
- }
-}