mirror of
https://github.com/oceanprotocol-archive/squid-js.git
synced 2024-02-02 15:31:51 +01:00
19 lines
256 B
TypeScript
19 lines
256 B
TypeScript
export default abstract class OceanBase {
|
|
|
|
protected id = "0x00"
|
|
|
|
constructor(id?) {
|
|
if (id) {
|
|
this.id = id
|
|
}
|
|
}
|
|
|
|
public getId() {
|
|
return this.id
|
|
}
|
|
|
|
public setId(id) {
|
|
this.id = id
|
|
}
|
|
}
|