interface CommentCreateDto {
    body?: string;
    public?: boolean;
}

Properties

Properties

body?: string

Content of the comment.

public?: boolean

Indicates whether the comment is public (true) or private/internal (false).