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/coordinates_3d.py Normal file
View File

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