2023-03-15 15:05:42 +01:00

15 lines
454 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;
updated_at?: Date;
office_folder_has_stakeholders?: IOfficeFolderHasStakeholder[];
documents?: IDocument;
}