@fdm-monster/server
Version:
FDM Monster is a bulk OctoPrint, Klipper, PrusaLink and BambuLab manager to set up, configure and monitor 3D printers. Our aim is to provide neat overview over your farm.
23 lines (22 loc) • 357 B
JavaScript
//#region src/services/interfaces/printer.dto.ts
var CreatePrinterDto = class {
name;
apiKey;
printerURL;
printerType;
};
var PrinterDto = class {
id;
name;
enabled;
disabledReason;
dateAdded;
apiKey;
username;
password;
printerURL;
printerType;
};
//#endregion
export { CreatePrinterDto, PrinterDto };
//# sourceMappingURL=printer.dto.js.map