package com.example.fuzzControll.conf;

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;

@Component("AflnetProperties")
@ConfigurationProperties(prefix = "aflnet")
public class AflnetProperties {
    String seedPath;
    String outputPath;
    String aflnetPath;

    public String getAflnetPath() {
        return aflnetPath;
    }

    public void setAflnetPath(String aflnetPath) {
        this.aflnetPath = aflnetPath;
    }

    public String getOutputPath() {
        return outputPath;
    }

    public void setOutputPath(String outputPath) {
        this.outputPath = outputPath;
    }

    public String getSeedPath() {
        return seedPath;
    }

    public void setSeedPath(String seedPath) {
        this.seedPath = seedPath;
    }
}