All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.metersphere.dto.MsExecResponseDTO Maven / Gradle / Ivy

package io.metersphere.dto;

import lombok.Data;

@Data
public class MsExecResponseDTO {

    private String testId;

    private String reportId;

    private String runMode;

    public MsExecResponseDTO() {

    }

    public MsExecResponseDTO(String testId, String reportId, String runMode) {
        this.testId = testId;
        this.reportId = reportId;
        this.runMode = runMode;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy