Files
kittycad.py/kittycad/models/export_file.py
Jess Frazelle bc3d698539 switch to pydantic
Signed-off-by: Jess Frazelle <github@jessfraz.com>
2023-11-28 23:50:50 -08:00

11 lines
165 B
Python

from pydantic import Base64Bytes, BaseModel
class ExportFile(BaseModel):
"""A file to be exported to the client."""
contents: Base64Bytes
name: str