import { IsObject, IsOptional } from 'class-validator';

export class EndMeetingDto {
  /**
   * Free-form snapshot written at the end of the call — questions covered,
   * NCs confirmed, documents received. Stored as JSON so the shape can grow
   * without a migration.
   */
  @IsOptional()
  @IsObject()
  summary?: Record<string, any>;
}
