10 lines
152 B
Python
10 lines
152 B
Python
|
|
from pydantic import BaseModel
|
|
|
|
|
|
|
|
class EntityGetNumChildren(BaseModel):
|
|
"""The response from the `EntityGetNumChildren` command."""
|
|
|
|
num: int
|