You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
257 B
12 lines
257 B
2 years ago
|
export class Collection {
|
||
|
address: string;
|
||
|
name: string;
|
||
|
logo_url?: string;
|
||
|
|
||
|
constructor(address: string, name: string, logo_url?: string) {
|
||
|
this.address = address;
|
||
|
this.name = name;
|
||
|
this.logo_url = logo_url;
|
||
|
}
|
||
|
}
|