11 lines
168 B
Python
11 lines
168 B
Python
|
|
from typing import ClassVar, List
|
||
|
|
|
||
|
|
from common import ApiModel
|
||
|
|
|
||
|
|
|
||
|
|
class Person(ApiModel):
|
||
|
|
KEYS: ClassVar[List[str]] = ["id", "name"]
|
||
|
|
|
||
|
|
id: int = -1
|
||
|
|
name: str
|