//
// Copyright (c) PlaceholderCompany. All rights reserved.
//
namespace MediaBrowser.Model.SyncPlay;
using global::System;
using global::System.ComponentModel;
///
public class SyncPlayUserLeftUpdate : GroupUpdate
{
///
/// Initializes a new instance of the class.
///
/// The groupId.
/// The data.
public SyncPlayUserLeftUpdate(Guid groupId, string data) : base(groupId, data)
{
}
///
[DefaultValue(GroupUpdateType.UserLeft)]
public override GroupUpdateType Type => GroupUpdateType.UserLeft;
}