interface Topic {
    author: Author;
    id: number;
    lastMessageDate: string;
    nbAnswers: number;
    title: string;
}

Properties

author: Author
id: number
lastMessageDate: string
nbAnswers: number
title: string