File size: 213 Bytes
4cd2145
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
from cbh.api.message.dto import Author
from cbh.core.database import MongoBaseModel, PyObjectId


class MessageModel(MongoBaseModel):
    chatId: str
    author: Author
    text: str
    moduleResponse: dict = {}