interface ReplyToComment {
    content: string;
    createdAt: Date;
    id: string;
    level: number;
    likeCount: number;
    replyCount: number;
    status: string;
    targetId: string;
    targetType: string;
    threadId: string;
    type: string;
    user: User;
}

Properties

content: string
createdAt: Date
id: string
level: number
likeCount: number
replyCount: number
status: string
targetId: string
targetType: string
threadId: string
type: string
user: User