16 lines
319 B
TypeScript
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;
|
|
}
|