irt-service/app/models/attribute.py
2023-11-10 15:21:16 -05:00

8 lines
149 B
Python

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