using System; namespace MediaBrowser.Model.SyncPlay; /// /// Group update without data. /// public abstract class GroupUpdate { /// /// Initializes a new instance of the class. /// /// The group identifier. protected GroupUpdate(Guid groupId) { GroupId = groupId; } /// /// Gets the group identifier. /// /// The group identifier. public Guid GroupId { get; } /// /// Gets the update type. /// /// The update type. public GroupUpdateType Type { get; init; } }