22 lines
712 B
TypeScript
22 lines
712 B
TypeScript
import { EFolderStatus } from "./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;
|
|
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[];
|
|
}
|