import { EFolderStatus } from "../Enums/Enums"; import IDeed from "./IDeed"; import IDocument from "./IDocumentAdmin"; import IOffice from "./IOfficeAdmin"; import IOfficeFolderHasCustomer from "./IOfficeFolderHasCustomerAdmin"; import IOfficeFolderHasStakeholder from "./IOfficeFolderHasStakeholderAdmin"; export default class IOfficeFolderAdmin { uuid: string; folder_number: string; name: string; description: string | null; archived_description: string | null; status: EFolderStatus; deed: IDeed; office: IOffice; created_at: Date | null; updated_at: Date | null; office_folder_has_customers?: IOfficeFolderHasCustomer[]; office_folder_has_stakeholder?: IOfficeFolderHasStakeholder[]; documents?: IDocument[]; }