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