Files
edr-platform/apps/edr-passenger-api/src/modules/notifications/dtos/email.dto.ts
2026-06-16 14:21:56 +03:00

9 lines
154 B
TypeScript

export class SendEmail {
to: string;
subject: string;
body: string;
html?: string;
templateKey?: string;
context?: Record<string, unknown>;
}