bitfront-library
Version:
Angular CLI project with components and classes used by other Angular projects of the BIT foundation.
14 lines • 427 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Domain = void 0;
var Domain = /** @class */ (function () {
function Domain(value, label, disabled) {
this.value = value;
this.label = label;
this.disabled = disabled;
}
Domain.DUMMY = new Domain(null, "Qualsevol", false);
return Domain;
}());
exports.Domain = Domain;
//# sourceMappingURL=domain.js.map