using Prefab.Domain.Common;
namespace Prefab.Domain.Events;
///
/// Event raised when a generic attribute is added or updated on an entity.
///
/// The entity that owns the attribute.
/// The attribute key.
/// The new attribute value.
public record GenericAttributeAddedOrUpdatedEvent(object Entity, string Key, object Value) : Event;