Presupuestador_web/shared/lib/contexts/common/domain/events/DomainEventInterface.ts
2024-04-23 17:29:38 +02:00

7 lines
125 B
TypeScript

import { UniqueID } from "../entities";
export interface IDomainEvent {
occurredOn: Date;
getAggregateId(): UniqueID;
}