рефакторинг серверной части сапфора.

This commit is contained in:
2023-12-16 03:57:01 +03:00
parent b7b41ae59c
commit 34c08e7d44
32 changed files with 942 additions and 355 deletions

View File

@@ -1,8 +1,12 @@
package TestingSystem.SAPFOR.Json;
import com.google.gson.annotations.Expose;
public class SapforTest_json {
import java.io.Serializable;
public class SapforTest_json implements Serializable {
@Expose
public String test_description = "";
public int id;
@Expose
public String description = "";
@Expose
public String group_description = "";
}