Presupuestador_web/shared/lib/contexts/common/domain/events/DomainEventInterface.ts

7 lines
125 B
TypeScript
Raw Normal View History

2024-04-23 15:29:38 +00:00
import { UniqueID } from "../entities";
export interface IDomainEvent {
occurredOn: Date;
getAggregateId(): UniqueID;
}