17 lines
572 B
TypeScript
17 lines
572 B
TypeScript
import { Contact } from "./Contact";
|
|
import { Document } from "./Document";
|
|
import { Office } from "./Office";
|
|
import { OfficeFolderHasStakeholder } from "./OfficeFolderHasStakeholder";
|
|
export declare namespace User {
|
|
class IUser {
|
|
uuid: string;
|
|
idNot: string;
|
|
contact: Contact.IContact;
|
|
office_membership: Office.IOffice;
|
|
created_at: Date | null;
|
|
updated_at: Date | null;
|
|
office_folder_has_stakeholders?: OfficeFolderHasStakeholder.IOfficeFolderHasStakeholder[];
|
|
documents?: Document.IDocument;
|
|
}
|
|
}
|