fix: update CompanyData types

This commit is contained in:
2025-10-31 14:19:16 +01:00
parent 1de41fda55
commit 4979b4ddd3

View File

@@ -1,9 +1,11 @@
import type { User } from "./user";
export interface CompanyData {
id: number;
name: string;
address: string;
ico: number;
contact: number;
contact: User;
hiring: boolean;
};