mirror of
https://github.com/zjs81/meshcore-open.git
synced 2026-04-20 22:13:48 +00:00
12 lines
214 B
Dart
12 lines
214 B
Dart
|
|
class PathSelection {
|
||
|
|
final List<int> pathBytes;
|
||
|
|
final int hopCount;
|
||
|
|
final bool useFlood;
|
||
|
|
|
||
|
|
const PathSelection({
|
||
|
|
required this.pathBytes,
|
||
|
|
required this.hopCount,
|
||
|
|
required this.useFlood,
|
||
|
|
});
|
||
|
|
}
|