2
0
mirror of https://github.com/esiur/esiur-dart.git synced 2025-06-27 14:53:11 +00:00
This commit is contained in:
2020-04-30 10:20:59 +03:00
parent 897ac180b7
commit 7eae6b47ce
6 changed files with 61 additions and 18 deletions

View File

@ -0,0 +1,7 @@
class KeyValuePair<K, V>
{
K key;
V value;
KeyValuePair(this.key, this.value);
}