Files
irt-service/app/models/attribute.py
2021-10-27 02:13:34 +00:00

8 lines
143 B
Python

from pydantic import BaseModel
from typing import Optional
class Attribute(BaseModel):
value: Optional[str]
type: Optional[str]
id: str