forked from core/mobile_nebula
10 lines
179 B
Dart
10 lines
179 B
Dart
|
import 'IPAndPort.dart';
|
||
|
|
||
|
class Hostmap {
|
||
|
String nebulaIp;
|
||
|
List<IPAndPort> destinations;
|
||
|
bool lighthouse;
|
||
|
|
||
|
Hostmap({this.nebulaIp, this.destinations, this.lighthouse});
|
||
|
}
|