7 lines
122 B
TypeScript
Executable File
7 lines
122 B
TypeScript
Executable File
export interface IPerson {
|
|
first_name?: string;
|
|
last_name?: string;
|
|
emails?: string[];
|
|
organization_ids?: number[];
|
|
}
|