16 lines
471 B
Java
16 lines
471 B
Java
|
|
package SapforTestingSystem;
|
|||
|
|
import Common.Constants.Constants;
|
|||
|
|
import com.google.gson.annotations.Expose;
|
|||
|
|
|
|||
|
|
import java.io.Serializable;
|
|||
|
|
import java.util.List;
|
|||
|
|
import java.util.Vector;
|
|||
|
|
public class SapforServerScenario_info implements Serializable {
|
|||
|
|
@Expose
|
|||
|
|
public int sapforId = Constants.Nan; //файл с сапфором
|
|||
|
|
@Expose
|
|||
|
|
public List<String> testsIds = new Vector<>();
|
|||
|
|
@Expose
|
|||
|
|
public List<String> configurationsIds = new Vector<>();
|
|||
|
|
}
|