assembly/core/entity/protocol.ts

13 lines
223 B
TypeScript
Raw Normal View History

2021-07-24 23:40:30 +00:00
//@ts-nocheck
export default class Protocol {
constructor(data) {
if (data) {
this.name = data.name;
this.tokenKey = data.tokenKey;
} else {
this.name = "";
this.tokenKey = "";
}
}
}