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