export class BookmarkStart { id: number; name: string; constructor(id: number, name: string) { this.id = id; this.name = name; } }