13 lines
267 B
TypeScript
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;
|
|
}
|