2020-07-27 20:43:58 +00:00
|
|
|
import 'IPAndPort.dart';
|
|
|
|
|
|
|
|
class Hostmap {
|
|
|
|
String nebulaIp;
|
|
|
|
List<IPAndPort> destinations;
|
|
|
|
bool lighthouse;
|
|
|
|
|
2022-09-21 20:27:35 +00:00
|
|
|
Hostmap({required this.nebulaIp, required this.destinations, required this.lighthouse});
|
2020-07-27 20:43:58 +00:00
|
|
|
}
|