io.qase.commons.models.domain.Data Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qase-java-commons Show documentation
Show all versions of qase-java-commons Show documentation
Qase TMS Reporter's common classes
The newest version!
package io.qase.commons.models.domain;
import java.util.ArrayList;
import java.util.List;
public class Data {
public String action;
public String expectedResult;
public String inputData;
public List attachments;
public Data() {
this.attachments = new ArrayList<>();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy