Files
appointment_tool/pojo/serial_modem.py
T

14 lines
246 B
Python

from gsmmodem import GsmModem
from pojo.contact_pojo import ContactPojo
class SerialModem():
ccid: str
phone_number: str
modem: GsmModem
contact: ContactPojo
def __init__(self, modem: GsmModem):
self.modem = modem