namespace MediaBrowser.Model.Syncplay { /// /// Class SyncplayGroupUpdate. /// public class SyncplayGroupUpdate { /// /// Gets or sets the group identifier. /// /// The group identifier. public string GroupId { get; set; } /// /// Gets or sets the update type. /// /// The update type. public SyncplayGroupUpdateType Type { get; set; } /// /// Gets or sets the data. /// /// The data. public T Data { get; set; } } }