14
kittycad/models/imported_geometry.py
Normal file
14
kittycad/models/imported_geometry.py
Normal file
@ -0,0 +1,14 @@
|
||||
from typing import List
|
||||
|
||||
from pydantic import BaseModel, ConfigDict
|
||||
|
||||
|
||||
|
||||
class ImportedGeometry(BaseModel):
|
||||
"""Data from importing the files"""
|
||||
|
||||
id: str
|
||||
|
||||
value: List[str]
|
||||
|
||||
model_config = ConfigDict(protected_namespaces=())
|
Reference in New Issue
Block a user