﻿class KeyValuePair {
    constructor(k, v) {
        this.key = k;
        this.value = v;
    }
    toString() {
        return key.toString() + ":" + value.toString();
    }
}
module.exports = KeyValuePair;