mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
9 lines
110 B
Dart
9 lines
110 B
Dart
class Pair<T, R> {
|
|
Pair({
|
|
required this.first,
|
|
required this.second,
|
|
});
|
|
T first;
|
|
R second;
|
|
}
|