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