UNPKG

scheunemann-interfaces

Version:
25 lines (24 loc) 686 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.LogsEntity = void 0; var LogsEntity = /** @class */ (function () { function LogsEntity(data) { // #region Properties (12) this.name = ''; this.createdAt = new Date(); this.description = ''; this.email = ''; this.memberId = ''; this.endPoint = ''; this.id = ''; if (data) { for (var key in data) { if (data.hasOwnProperty(key) && key in this) { this[key] = data[key]; } } } } return LogsEntity; }()); exports.LogsEntity = LogsEntity;