15 lines
479 B
TypeScript
15 lines
479 B
TypeScript
import IContact from "./IContactAdmin";
|
|
import IDocument from "./IDocumentAdmin";
|
|
import OfficesEntity from "./IOfficeAdmin";
|
|
import IOfficeFolderHasStakeholder from "./IOfficeFolderHasStakeholderAdmin";
|
|
export default class IUserAdmin {
|
|
uuid: string;
|
|
idNot: string;
|
|
contact: IContact;
|
|
office_membership: OfficesEntity;
|
|
created_at?: Date;
|
|
updated_at?: Date;
|
|
office_folder_has_stakeholders?: IOfficeFolderHasStakeholder[];
|
|
documents?: IDocument;
|
|
}
|