Files
mesh-network-project/desktop_app/api/channel.py

5 lines
141 B
Python
Raw Normal View History

class Channel:
def __init__(self, name: str, key: str, sf: int = 9):
self.name = name
self.key = key
self.sf = sf