package eu.euranova.leadcep;

public class TestType {
    private Long f0;
    private Long f1;
    private String f2;

    public TestType(Long f0, Long f1, String f2){
        this.f0 = f0;
        this.f1 = f1;
        this.f2 = f2;
    };

    public Long getF0() {
        return f0;
    }

    public Long getF1() {
        return f1;
    }

    public String getF2() {
        return f2;
    }
}
