scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
23 lines (22 loc) • 681 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CarouselImageEntity = void 0;
var CarouselImageEntity = /** @class */ (function () {
// #endregion Properties (3)
// #region Constructors (1)
function CarouselImageEntity(data) {
// #region Properties (3)
this.caption = '';
this.id = '';
this.url = '';
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return CarouselImageEntity;
}());
exports.CarouselImageEntity = CarouselImageEntity;