mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-23 05:46:01 +00:00
7 lines
110 B
JavaScript
7 lines
110 B
JavaScript
export default class MapEntry {
|
|
constructor(key, value) {
|
|
this.key = key;
|
|
this.value = value;
|
|
}
|
|
}
|