trifid_mobile/lib/models/Hostmap.dart
2020-07-27 15:43:58 -05:00

9 lines
179 B
Dart

import 'IPAndPort.dart';
class Hostmap {
String nebulaIp;
List<IPAndPort> destinations;
bool lighthouse;
Hostmap({this.nebulaIp, this.destinations, this.lighthouse});
}