Files
appointment_tool/pojo/serial_modem.py
T
2022-02-18 22:43:35 +01:00

11 lines
178 B
Python

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