This commit is contained in:
2025-06-19 14:03:26 +05:00
parent 4fcb334d69
commit 8bdf63eb57
15 changed files with 26 additions and 29 deletions
+9
View File
@@ -0,0 +1,9 @@
import { Company } from "./Company";
export interface Manager {
id: string;
email: string;
fullname: string;
companyId: string;
company?: Company;
}