intra-front/src/type/UserType.ts
2024-10-21 19:51:31 +02:00

8 lines
131 B
TypeScript

import { Instance } from "./InstanceType";
export interface User {
id: number;
name: string;
instances: Instance[];
}