try to add sim info to fb
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
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
|
||||
Reference in New Issue
Block a user