l7note
Version:
Access your notion notes quick
30 lines (27 loc) • 473 B
text/typescript
class Note {
id: string;
url: string;
title: string;
text: string;
tags: string;
createdAt: string;
updatedAt: string;
constructor(
id: string,
url: string,
title: string,
text: string,
tags: string,
createdAt: string,
updatedAt: string
) {
this.id = id;
this.url = url;
this.title = title;
this.text = text;
this.tags = tags;
this.createdAt = createdAt;
this.updatedAt = updatedAt;
}
}
export { Note };