interface HotReply {
    content: string;
    createdAt: Date;
    id: string;
    level: number;
    likeCount: number;
    pictures: Picture[];
    replyCount: number;
    replyToComment: ReplyToComment;
    status: string;
    targetId: string;
    targetType: string;
    threadId: string;
    type: string;
    user: User;
}

Properties

content: string
createdAt: Date
id: string
level: number
likeCount: number
pictures: Picture[]
replyCount: number
replyToComment: ReplyToComment
status: string
targetId: string
targetType: string
threadId: string
type: string
user: User