2020-01-30 16:14:25 +02:00
|
|
|
export class BookmarkStart {
|
2020-02-11 10:01:39 +02:00
|
|
|
id: number;
|
2020-01-30 16:14:25 +02:00
|
|
|
name: string;
|
2020-02-11 10:01:39 +02:00
|
|
|
constructor(id: number, name: string) {
|
2020-01-30 16:14:25 +02:00
|
|
|
this.id = id;
|
|
|
|
this.name = name;
|
|
|
|
}
|
|
|
|
}
|