2023-10-04 00:25:36 +03:00
|
|
|
|
package SapforTestingSystem;
|
2023-10-04 22:01:09 +03:00
|
|
|
|
import Common.Constants;
|
2023-10-04 00:25:36 +03:00
|
|
|
|
import com.google.gson.annotations.Expose;
|
|
|
|
|
|
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
import java.util.Vector;
|
2023-10-08 01:57:25 +03:00
|
|
|
|
public class SapforTasksPackage_info implements Serializable {
|
2023-10-08 23:07:41 +03:00
|
|
|
|
@Expose
|
|
|
|
|
|
public String email = "";
|
2023-10-04 00:25:36 +03:00
|
|
|
|
@Expose
|
|
|
|
|
|
public int sapforId = Constants.Nan; //файл с сапфором
|
|
|
|
|
|
@Expose
|
|
|
|
|
|
public List<String> testsIds = new Vector<>();
|
|
|
|
|
|
@Expose
|
|
|
|
|
|
public List<String> configurationsIds = new Vector<>();
|
|
|
|
|
|
}
|