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

@@ -0,0 +1,7 @@
from pydantic import BaseModel, Field
class Material(BaseModel):
colour: str
density: float = Field(gt = 0)
name: str