Client: Filament/Vendor selects now work

This commit is contained in:
Donkie
2023-05-14 20:06:17 +02:00
parent 8e21cd2e12
commit 43919ac90e
14 changed files with 98 additions and 55 deletions

View File

@@ -0,0 +1,14 @@
interface IFilament {
id: string;
registered: string;
name?: string;
vendor?: IVendor;
material?: string;
price?: number;
density: number;
diameter: number;
weight?: number;
spool_weight?: number;
article_number?: string;
comment?: string;
}