Interface CommentInterface

interface CommentInterface {
    comment: string;
    createdAt: Date;
    id: number;
    updatedAt: Date;
}

Properties

comment: string
createdAt: Date
id: number
updatedAt: Date