Fix (UI): Corrected console outputs for UBOM.

This commit is contained in:
2025-05-30 10:49:42 +01:00
parent 3ae48a8c90
commit e8869552fc
21 changed files with 353 additions and 7 deletions

7
models/dimensions_3d.py Normal file
View File

@@ -0,0 +1,7 @@
from pydantic import BaseModel, Field
class Dimensions_3D(BaseModel):
x: float = Field(ge = 0)
y: float = Field(ge = 0)
z: float = Field(ge = 0)