1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 1× 1× 1× 1× 24× 24× 24× 1× 1× | define(["require", "exports"], function (require, exports) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Comment = (function () { function Comment(id, commentProperties, text) { this.id = id; this.commentProperties = commentProperties; this.text = text; } return Comment; }()); exports.Comment = Comment; }); |