2023-03-22 13:01:05 +01:00

15 lines
466 B
TypeScript

import IContact from "./IContact";
import IDocument from "./IDocument";
import OfficesEntity from "./IOffice";
import IOfficeFolderHasStakeholder from "./IOfficeFolderHasStakeholder";
export default class IUser {
uuid: string;
idNot: string;
contact: IContact;
office_membership: OfficesEntity;
created_at: Date | null;
updated_at: Date | null;
office_folder_has_stakeholders?: IOfficeFolderHasStakeholder[];
documents?: IDocument;
}