AniLink - v1.29.2
    Preparing search index...

    BasicComment is an interface representing a basic comment. It includes the id, user id, and thread id each having their own properties.

    interface BasicComment {
        id: number;
        threadId: number;
        userId: number;
    }
    Index
    id: number

    id is a number representing the unique identifier of the comment.

    threadId: number

    threadId is a number representing the unique identifier of the thread where the comment is posted.

    userId: number

    userId is a number representing the unique identifier of the user who made the comment.