// DTO class (not an interface) so `emitDecoratorMetadata` has a runtime
// value to reference in the decorated controller signature — required by
// this project's isolatedModules + emitDecoratorMetadata tsconfig.
export class NotifyClientDto {
  emails!: string[];
  message?: string | null;
  due_date?: string | null; // YYYY-MM-DD
}
