mirror of
https://github.com/DefinedNet/mobile_nebula.git
synced 2025-01-18 19:27:05 +00:00
dbe67c2f81
Co-authored-by: John Maguire <contact@johnmaguire.me>
9 lines
206 B
Dart
9 lines
206 B
Dart
import 'IPAndPort.dart';
|
|
|
|
class Hostmap {
|
|
String nebulaIp;
|
|
List<IPAndPort> destinations;
|
|
bool lighthouse;
|
|
|
|
Hostmap({required this.nebulaIp, required this.destinations, required this.lighthouse});
|
|
}
|