7 lines
100 B
Python
7 lines
100 B
Python
# TODO Add Room class
|
|
|
|
|
|
class Room:
|
|
def __init__(self, room_id: str):
|
|
self.id = room_id
|