import type { NotificationTemplate } from './notification-template.entity'; /** * Fields required to create a NotificationTemplate. */ export type CreateNotificationTemplateDto = Omit; /** * Fields allowed when updating a NotificationTemplate. */ export type UpdateNotificationTemplateDto = Partial; /** * Full NotificationTemplate shape returned by the API. */ export type NotificationTemplateResponse = NotificationTemplate; //# sourceMappingURL=notification-template.dto.d.ts.map