This commit is contained in:
Vyn 2025-06-11 09:50:52 +02:00
commit 61cbd57af1
168 changed files with 31208 additions and 0 deletions

View 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);
}
}