using Prefab.Domain.Common;
namespace Prefab.Domain.Events;
///
/// Event raised when a generic attribute is removed from an entity.
///
/// The entity that owned the attribute.
/// The key that was removed.
public record GenericAttributeRemovedEvent(object Entity, string Key) : Event;