add note in the excel

This commit is contained in:
2023-04-18 20:23:14 +02:00
parent a3c06b225c
commit 7bbdf6ca9c
2 changed files with 25 additions and 16 deletions
+2
View File
@@ -12,6 +12,7 @@ class ContactPojo:
mail: str
ccid: str
position: int
note: str
def __init__(self, phone_number: str, passport_number: str, last_name: str, first_name: str, mail: str,
ccid: str = "",
@@ -23,6 +24,7 @@ class ContactPojo:
self.ccid = ccid
self.mail = mail
self.position = position
self.note = ""
def to_firestore_dict(self):
dest = {