2023-08-25 18:48:17 -04:00
|
|
|
import { Component, ComponentNames } from '.';
|
2023-08-13 18:47:58 -04:00
|
|
|
|
|
|
|
export class NetworkUpdateable extends Component {
|
2023-08-15 20:30:19 -04:00
|
|
|
public isPublish: boolean;
|
|
|
|
public isSubscribe: boolean;
|
|
|
|
|
|
|
|
constructor(isPublish: boolean, isSubscribe: boolean) {
|
2023-08-13 18:47:58 -04:00
|
|
|
super(ComponentNames.NetworkUpdateable);
|
2023-08-15 20:30:19 -04:00
|
|
|
|
|
|
|
this.isPublish = isPublish;
|
|
|
|
this.isSubscribe = isSubscribe;
|
2023-08-13 18:47:58 -04:00
|
|
|
}
|
|
|
|
}
|