interface Comment {
    comment: string;
    commentId: string;
    date: string;
    hidden: boolean;
    htmlComment: string;
    userId: string;
    username: string;
}

Properties

comment: string
commentId: string
date: string
hidden: boolean
htmlComment: string
userId: string
username: string