@mbc-cqrs-serverless/core
Version:
CQRS and event base core
18 lines (17 loc) • 341 B
TypeScript
export interface INotification {
id: string;
table: string;
pk: string;
sk: string;
tenantCode: string;
action: string;
content?: object;
}
export interface EmailNotification {
fromAddr?: string;
toAddrs: string[];
ccAddrs?: string[];
bccAddrs?: string[];
subject: string;
body: string;
}