l7note
Version:
Access your notion notes quick
16 lines (15 loc) • 423 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Note = void 0;
class Note {
constructor(id, url, title, text, tags, createdAt, updatedAt) {
this.id = id;
this.url = url;
this.title = title;
this.text = text;
this.tags = tags;
this.createdAt = createdAt;
this.updatedAt = updatedAt;
}
}
exports.Note = Note;