Files
dspace-angular/src/app/shared/key-value-pair.model.ts
2022-09-12 17:42:37 +02:00

5 lines
62 B
TypeScript

export interface KeyValuePair<K, V> {
key: K;
value: V;
}