1
0
Fork 1
mirror of https://github.com/DefinedNet/mobile_nebula.git synced 2025-02-23 03:25:26 +00:00
mobile_nebula/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 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
}