Frontend/src/article/data/dto/fetch_article_by_id_dto.ts
2022-10-12 16:34:44 +03:00

10 lines
166 B
TypeScript

export interface FetchArticleByIdDTO {
id: string;
topic: string;
title: string;
authors: string[];
tags: string[];
summary: string;
content: string;
}