scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
24 lines (23 loc) • 882 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ClientAplicationEntity = void 0;
var client_aplication_credential_entity_1 = require("./client-aplication-credential.entity");
var ClientAplicationEntity = /** @class */ (function () {
// #endregion Properties (3)
// #region Constructors (1)
function ClientAplicationEntity(data) {
// #region Properties (3)
this.credential = new client_aplication_credential_entity_1.ClientAplicationCredentialEntity();
this.description = null;
this.name = '';
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return ClientAplicationEntity;
}());
exports.ClientAplicationEntity = ClientAplicationEntity;