2
0
mirror of https://github.com/esiur/esiur-dart.git synced 2026-04-03 17:58:21 +00:00
Files
esiur-dart/lib/src/Data/KeyValuePair.dart
2020-04-30 10:20:59 +03:00

7 lines
87 B
Dart

class KeyValuePair<K, V>
{
K key;
V value;
KeyValuePair(this.key, this.value);
}