16 lines
447 B
Java
16 lines
447 B
Java
|
|
package TestingSystem.SAPFOR.Json;
|
||
|
|
import Common.Constants;
|
||
|
|
import com.google.gson.annotations.Expose;
|
||
|
|
|
||
|
|
import java.io.Serializable;
|
||
|
|
import java.util.List;
|
||
|
|
import java.util.Vector;
|
||
|
|
public class SapforTestingSet_json implements Serializable {
|
||
|
|
@Expose
|
||
|
|
public int id = Constants.Nan;
|
||
|
|
@Expose
|
||
|
|
public List<SapforTest_json> tests = new Vector<>();
|
||
|
|
@Expose
|
||
|
|
public List<SapforConfiguration_json> configurations = new Vector<>();
|
||
|
|
}
|