import { PageCommentActivity, CommentContent } from "./PageCommentActivity"; import { Identity, GuidValue } from "@omnia/fx-models"; export interface PageCommentReplyActivity extends PageCommentActivity { /** * The id of the comment to which the commentId is a reply * */ readonly repliedCommentId: GuidValue; /** * The user id of the owner of the comment which got the reply (i.e. source comment) * */ readonly repliedCommentCreatedBy: Identity; /** * The content of the replied comment (i.e. source comment) * */ readonly repliedComment: CommentContent; }