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