mirror of
https://github.com/Instadapp/assembly.git
synced 2024-07-29 22:37:06 +00:00
13 lines
223 B
TypeScript
13 lines
223 B
TypeScript
|
//@ts-nocheck
|
||
|
export default class Protocol {
|
||
|
constructor(data) {
|
||
|
if (data) {
|
||
|
this.name = data.name;
|
||
|
this.tokenKey = data.tokenKey;
|
||
|
} else {
|
||
|
this.name = "";
|
||
|
this.tokenKey = "";
|
||
|
}
|
||
|
}
|
||
|
}
|