Reupload
This commit is contained in:
commit
61cbd57af1
168 changed files with 31208 additions and 0 deletions
15
web-app/src/core/ApiKey.ts
Normal file
15
web-app/src/core/ApiKey.ts
Normal file
|
@ -0,0 +1,15 @@
|
|||
export interface ApiKeyData {
|
||||
id: string,
|
||||
key: string,
|
||||
name: string
|
||||
}
|
||||
|
||||
export interface ApiKey extends Readonly<ApiKeyData> {}
|
||||
|
||||
export class ApiKey {
|
||||
|
||||
constructor(data: ApiKeyData) {
|
||||
Object.assign(this, data);
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue