Files
spoolman2/client/src/pages/spools/model.tsx
2023-07-06 16:41:25 +02:00

16 lines
319 B
TypeScript

import { IFilament } from "../filaments/model";
export interface ISpool {
id: number;
registered: string;
first_used?: string;
last_used?: string;
filament: IFilament;
remaining_weight?: number;
used_weight: number;
location?: string;
lot_nr?: string;
comment?: string;
[key: string]: unknown;
}