Entities/CommentRecord.ps1


class CommentRecord : BaseRecord {

    [string] $Comment

    [string]ToString () {

        return $this.Comment;
    }
}