This commit is contained in:
headlesdev
2025-05-18 16:09:03 +02:00
parent 7c47a93bd9
commit 5dd17f9f1b
4 changed files with 21 additions and 42 deletions

14
app/types.ts Normal file
View File

@@ -0,0 +1,14 @@
export interface Site {
id: string;
name: string;
description: string;
networks: Network[];
}
export interface Network {
id: string;
name: string;
ipv4Subnet?: string;
ipv6Subnet?: string;
gateway?: string;
}