2023-11-19 02:12:44 +03:00
|
|
|
package TestingSystem.SAPFOR.Json;
|
2023-10-21 02:47:21 +03:00
|
|
|
import com.google.gson.annotations.Expose;
|
2023-12-16 03:57:01 +03:00
|
|
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
|
|
public class SapforTest_json implements Serializable {
|
2023-10-21 02:47:21 +03:00
|
|
|
@Expose
|
2023-12-16 03:57:01 +03:00
|
|
|
public int id;
|
|
|
|
|
@Expose
|
|
|
|
|
public String description = "";
|
2023-10-21 02:47:21 +03:00
|
|
|
@Expose
|
|
|
|
|
public String group_description = "";
|
|
|
|
|
}
|