compass/compass/utils/classes/CollectionImpl.ts
2024-02-23 01:57:08 +00:00

16 lines
261 B
TypeScript

class CollectionImpl {
title: string;
icon: any;
data: any;
constructor(title: string, icon: any) {
this.title = title;
this.icon = icon;
}
// subject to change
setData(data: any){
this.data = data;
}
}