portal-www
Version:
Nova Portal Website. Based on Next starter by Ueno
16 lines (13 loc) • 393 B
text/typescript
import { IConnection } from 'typings';
export default class Connection {
constructor(state: IConnection) {
this.id = state.id;
this.subscriptionId = state.subscriptionId;
this.isActive = state.isActive;
this.type = state.type;
}
id: IConnection['id'];
subscriptionId: IConnection['subscriptionId'];
isActive: IConnection['isActive'];
type: IConnection['type'];
}