mirror of
https://github.com/Mueller-Patrick/Betterzon.git
synced 2025-04-19 15:29:18 +00:00
10 lines
195 B
TypeScript
10 lines
195 B
TypeScript
export interface Contact_Person {
|
|
contact_person_id: number;
|
|
first_name: string;
|
|
last_name: string;
|
|
gender: string;
|
|
email: string;
|
|
phone: string;
|
|
vendor_id: number;
|
|
}
|