UNPKG

@fdm-monster/server

Version:

FDM Monster is a bulk OctoPrint manager to set up, configure and monitor 3D printers. Our aim is to provide extremely optimized websocket performance and reliability.

57 lines (56 loc) 953 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function _export(target, all) { for(var name in all)Object.defineProperty(target, name, { enumerable: true, get: all[name] }); } _export(exports, { CreateFloorDto: function() { return CreateFloorDto; }, CreatePositionDto: function() { return CreatePositionDto; }, FloorDto: function() { return FloorDto; }, PositionDto: function() { return PositionDto; }, UpdateFloorDto: function() { return UpdateFloorDto; } }); class PositionDto { x; y; printerId; floorId; } class CreatePositionDto { x; y; printerId; floorId; } class FloorDto { id; name; floor; printers; } class CreateFloorDto { printers; name; floor; } class UpdateFloorDto { printers; name; floor; } //# sourceMappingURL=floor.dto.js.map