8 lines
134 B
Python
8 lines
134 B
Python
|
|
from typing import Optional
|
||
|
|
from pydantic import BaseModel
|
||
|
|
|
||
|
|
|
||
|
|
class MsgPayload(BaseModel):
|
||
|
|
msg_id: Optional[int]
|
||
|
|
msg_name: str
|