forked from bot/app
7 lines
161 B
Python
7 lines
161 B
Python
class Session:
|
|
def __init__(self, session_type: str, session_id: int | str):
|
|
self.session_type = session_type
|
|
self.session_id = session_id
|
|
|
|
|