src/app/features/notification/model/entity-notification-context.ts
Details about an entity that triggered a notification.
Properties |
|
| entityId |
entityId:
|
Type : string
|
| Optional |
| entityType |
entityType:
|
Type : string
|
export interface EntityNotificationContext {
entityType: string;
entityId?: string;
}