assembly/core/entity/protocol.ts
Georges KABBOUCHI 5d00313260 wip
2021-07-25 02:40:30 +03:00

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 = "";
}
}
}