mirror of
https://github.com/bitwarden/browser
synced 2025-12-23 19:53:43 +00:00
import apis
This commit is contained in:
9
src/models/request/kvpRequest.ts
Normal file
9
src/models/request/kvpRequest.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
export class KvpRequest<TK, TV> {
|
||||
key: TK;
|
||||
value: TV;
|
||||
|
||||
constructor(key: TK, value: TV) {
|
||||
this.key = key;
|
||||
this.value = value;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user