mash-server/src/mash/bridges/bridge.py

13 lines
249 B
Python
Raw Normal View History

2024-07-09 03:25:14 +02:00
class Bridge:
def __init__(self, *, id: str, type: str) -> None:
self._id = id
self._type = type
@property
def id(self) -> str:
return self._id
@property
def type(self) -> str:
return self._type