dashboard

This commit is contained in:
Bastian Wagner
2024-09-06 16:04:50 +02:00
parent bda298bb97
commit e4031c5910
30 changed files with 617 additions and 20 deletions

View File

@@ -0,0 +1,10 @@
import { RedirectUri } from "./redirect-uri.interface";
import { User } from "./user.interface";
export interface Client {
admins: User;
clientName: string;
id: string;
description: string;
redirectUris: RedirectUri[];
}