Files
Autonomous-Bug-Explorer/dist/modules/fuzzing/domain/value-objects/FuzzPayload.js
2026-03-05 09:22:55 -05:00

13 lines
462 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.FuzzPayload = void 0;
const ValueObject_1 = require("../../../../shared/domain/ValueObject");
class FuzzPayload extends ValueObject_1.ValueObject {
static create(value, strategy) {
return new FuzzPayload({ value, strategy });
}
get value() { return this.props.value; }
get strategy() { return this.props.strategy; }
}
exports.FuzzPayload = FuzzPayload;