@fabric-es/fabric-cqrs
Version:
Hyperledger Fabric middleware for event sourcing and cqrs pattern
23 lines (22 loc) • 431 B
TypeScript
export interface BaseEntity {
id?: string;
tag?: string;
desc?: string;
_creator?: string;
_event?: string;
_commit?: string[];
_entityName?: string;
_timeline?: string;
}
export interface BaseCacheEntity {
id?: string;
tag?: string;
desc?: string;
creator?: string;
}
export interface BaseOutputEntity {
id?: string;
tag?: string;
desc?: string;
creator?: string;
}