3
0
Fork 0
trifid_mobile/lib/models/Hostmap.dart

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
206 B
Dart
Raw Permalink Normal View History

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