Files
x-news-ai/src/modules/content-writer/dto/content-response.dto.ts
T
2026-05-14 08:42:03 +00:00

13 lines
267 B
TypeScript

// dto/content-response.dto.ts
export class ContentResponseDto {
topic: string;
final: string;
draft?: string;
reviewNotes?: string;
detectedStyle: string;
detectedTone: string;
tokensUsed: number;
model: string;
prompt: string;
}