BETTERZON-121: Adding service functions for contact persons API (#68)

This commit is contained in:
Patrick
2021-05-29 13:28:54 +02:00
committed by GitHub
parent 1a65783690
commit 7dc76649fc
2 changed files with 107 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
export interface ContactPerson {
contact_person_id: number;
first_name: string;
last_name: string;
gender: string;
email: string;
phone: string;
vendor_id: number;
}