Files
appointment_tool/pojo/SimInfoPojo.py
T
2022-02-28 20:09:02 +01:00

16 lines
296 B
Python

class SimInfoPojo:
phone: str
ccid: str
def __init__(self, phone: str, ccid: str):
self.phone = phone
self.ccid = ccid
def to_firestore_dict(self):
dest = {
u'phone': self.phone,
u'ccid': self.ccid,
}
return dest