12 lines
192 B
Python
12 lines
192 B
Python
from typing import Optional
|
|
from pydantic import BaseModel
|
|
|
|
from mirrortea.models.user import User
|
|
|
|
|
|
class MatrixRoom(BaseModel):
|
|
""""""
|
|
|
|
matrix_room_id: str
|
|
connect_to_user: User
|