lecoffre-ressources/dist/Interfaces/IOfficeFolderHasCustomerAdmin.d.ts
2023-03-21 15:45:12 +01:00

10 lines
270 B
TypeScript

import ICustomer from "./ICustomerAdmin";
import IOfficeFolder from "./IOfficeFolderAdmin";
export default class IOfficeFolderHasCustomerAdmin {
uuid: string;
customer: ICustomer;
office_folder: IOfficeFolder;
created_at?: Date;
updated_at?: Date;
}