import { EFolderStatus } from "../../Enums/Enums"; import IDeed from "./IDeed"; import IDocument from "./IDocument"; import IOffice from "./IOffice"; import IOfficeFolderHasCustomer from "./IOfficeFolderHasCustomer"; import IOfficeFolderHasStakeholder from "./IOfficeFolderHasStakeholder"; export default class IOfficeFolder { 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[]; }