namespace MediaBrowser.Model.Syncplay { /// /// Class GroupInfoModel. /// public class GroupInfoView { /// /// Gets or sets the group identifier. /// /// The group identifier. public string GroupId { get; set; } /// /// Gets or sets the playing item id. /// /// The playing item id. public string PlayingItemId { get; set; } /// /// Gets or sets the playing item name. /// /// The playing item name. public string PlayingItemName { get; set; } /// /// Gets or sets the position ticks. /// /// The position ticks. public long PositionTicks { get; set; } /// /// Gets or sets the partecipants. /// /// The partecipants. public string[] Partecipants { get; set; } } }