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; archived_description?: string; status: EFolderStatus; deed: IDeed; office: IOffice; created_at?: Date; updated_at?: Date; office_folder_has_customers?: IOfficeFolderHasCustomer[]; office_folder_has_stakeholder?: IOfficeFolderHasStakeholder[]; documents?: IDocument[]; }