mirror of
https://github.com/DefinedNet/mobile_nebula.git
synced 2025-07-13 14:46:05 +00:00
9 lines
179 B
Dart
9 lines
179 B
Dart
import 'IPAndPort.dart';
|
|
|
|
class Hostmap {
|
|
String nebulaIp;
|
|
List<IPAndPort> destinations;
|
|
bool lighthouse;
|
|
|
|
Hostmap({this.nebulaIp, this.destinations, this.lighthouse});
|
|
}
|