9 lines
120 B
Python
9 lines
120 B
Python
# coding:utf-8
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class BaleCreate(BaseModel):
|
|
channel: dict
|
|
dir: str
|
|
id: int
|