UNPKG

shrimpy-node

Version:
25 lines 874 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var PredictionItemDtoConverter = /** @class */ (function () { function PredictionItemDtoConverter() { } PredictionItemDtoConverter.prototype.convertFromDto = function (dto) { var result = { date: dto.date, updatedAt: dto.updatedAt, prediction: dto.prediction }; return result; }; PredictionItemDtoConverter.prototype.convertToDto = function (model) { var result = { date: model.date, updatedAt: model.updatedAt, prediction: model.prediction }; return result; }; return PredictionItemDtoConverter; }()); exports.PredictionItemDtoConverter = PredictionItemDtoConverter; //# sourceMappingURL=prediction-item-dto-converter.js.map