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