function Comment(content) {
    this.content = content;
}

Comment.prototype.getContent = function () {
    return this.content;
}