Files
PiliPlus/lib/common/widgets/pair.dart
2024-10-22 10:54:42 +08:00

9 lines
110 B
Dart

class Pair<T, R> {
Pair({
required this.first,
required this.second,
});
T first;
R second;
}