9 lines
128 B
Python
9 lines
128 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class DataAttrEdit(BaseModel):
|
|
name: str
|
|
show_name: str
|
|
is_show: bool
|
|
cat: str
|