2020-06-03 09:54:01 +00:00
|
|
|
#nullable disable
|
|
|
|
|
2020-05-09 12:34:07 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2020-05-06 21:42:53 +00:00
|
|
|
namespace MediaBrowser.Model.SyncPlay
|
2020-04-01 15:52:42 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
2020-04-21 21:37:37 +00:00
|
|
|
/// Class GroupInfoView.
|
2020-04-01 15:52:42 +00:00
|
|
|
/// </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>
|
2020-04-21 21:37:37 +00:00
|
|
|
/// Gets or sets the participants.
|
2020-04-01 15:52:42 +00:00
|
|
|
/// </summary>
|
2020-04-21 21:37:37 +00:00
|
|
|
/// <value>The participants.</value>
|
2020-05-09 12:34:07 +00:00
|
|
|
public IReadOnlyList<string> Participants { get; set; }
|
2020-04-01 15:52:42 +00:00
|
|
|
}
|
|
|
|
}
|