@gsb-core/core
Version:
GSB core services and classes for platform-independent web applications
24 lines • 570 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GsbDtoBase = exports.ClaimsDto = void 0;
/**
* Interface for claims data
*/
class ClaimsDto {
constructor(obj) {
Object.assign(this, obj);
this._entDefName = "ClaimsDto";
}
}
exports.ClaimsDto = ClaimsDto;
/**
* Base DTO class for GSB API operations
*/
class GsbDtoBase {
constructor(obj) {
Object.assign(this, obj);
this._entDefName = "GsbDtoBase";
}
}
exports.GsbDtoBase = GsbDtoBase;
//# sourceMappingURL=gsb-dto-base.model.js.map