add recover_mail for mail creation

This commit is contained in:
2023-10-11 00:10:31 +02:00
parent 4ca367129d
commit 548be1c7fe
+4 -2
View File
@@ -1,6 +1,8 @@
class MailCreationPojo: class MailCreationPojo:
def __init__(self, name, password, phone): def __init__(self, name, password, mail_address, recover_mail,recover_mail_pwd):
self.name = name self.name = name
self.password = password self.password = password
self.phone = phone self.mail_address = mail_address
self.recover_mail = recover_mail
self.recover_mail_pwd = recover_mail_pwd