Files
irt-service/app/models/attribute.py
Joshua Burman deb6b9014e the big format
2022-02-10 20:29:50 -05:00

9 lines
150 B
Python

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