can read contact info from excel

This commit is contained in:
2022-02-21 10:37:18 +01:00
parent 16efab25a3
commit 921457b934
3 changed files with 7 additions and 1 deletions
+3 -1
View File
@@ -7,11 +7,13 @@ class ContactPojo:
passport: str
last_name: str
first_name: str
mail: str
ccid: str
def __init__(self, phone_number: str, passport_number: str, last_name: str, first_name: str, ccid: str):
def __init__(self, phone_number: str, passport_number: str, last_name: str, first_name: str, ccid: str, mail: str):
self.phone = phone_number
self.passport = passport_number
self.last_name = last_name
self.first_name = first_name
self.ccid = ccid
self.mail = mail