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; }