hosting-frontend/src/app/models/portfolio.model.ts
Alexis Bruneteau 49e1bcac81
Some checks failed
Build and Deploy to k3s / build-and-deploy (push) Failing after 38s
working good
2025-06-04 21:52:54 +02:00

10 lines
159 B
TypeScript

export interface Portfolio {
active: boolean;
id: number;
name: string;
domain: string;
path?: string;
created_at: string;
updated_at: string;
}