11 lines
178 B
Python
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
|