2024-07-28 15:21:51 -07:00
|
|
|
from typing import List
|
2024-04-05 13:12:19 -07:00
|
|
|
|
2024-07-28 15:21:51 -07:00
|
|
|
from pydantic import BaseModel, ConfigDict
|
2024-04-05 13:12:19 -07:00
|
|
|
|
|
|
|
|
|
|
|
class ImportedGeometry(BaseModel):
|
|
|
|
"""Data from importing the files"""
|
|
|
|
|
|
|
|
id: str
|
|
|
|
|
|
|
|
value: List[str]
|
|
|
|
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|