UNPKG

lavva.exalushome.network

Version:

Library implementing communication and abstraction layers for network configuration API in ExalusHome system

33 lines 792 B
export class NetworkConfigrurationStaticParams { constructor() { this._ipAddress = ""; this._subnetMask = ""; this._defaultGateway = ""; this._broadcast = ""; } get IpAddress() { return this._ipAddress; } set IpAddress(value) { this._ipAddress = value; } get SubnetMask() { return this._subnetMask; } set SubnetMask(value) { this._subnetMask = value; } get DefaultGateway() { return this._defaultGateway; } set DefaultGateway(value) { this._defaultGateway = value; } get Broadcast() { return this._broadcast; } set Broadcast(value) { this._broadcast = value; } } //# sourceMappingURL=NetworkConfigrurationStaticParams.js.map