using System;
using System.ComponentModel;
namespace MediaBrowser.Model.SyncPlay;
/// 
public class SyncPlayUserJoinedUpdate : GroupUpdate
{
    /// 
    /// Initializes a new instance of the  class.
    /// 
    /// The groupId.
    /// The data.
    public SyncPlayUserJoinedUpdate(Guid groupId, string data) : base(groupId, data)
    {
    }
    /// 
    [DefaultValue(GroupUpdateType.UserJoined)]
    public override GroupUpdateType Type => GroupUpdateType.UserJoined;
}