#nullable disable
namespace MediaBrowser.Model.SyncPlay
{
///
/// Class GroupUpdate.
///
public class GroupUpdate
{
///
/// Gets or sets the group identifier.
///
/// The group identifier.
public string GroupId { get; set; }
///
/// Gets or sets the update type.
///
/// The update type.
public GroupUpdateType Type { get; set; }
///
/// Gets or sets the data.
///
/// The data.
public T Data { get; set; }
}
}