объекты для ссылок

This commit is contained in:
2025-05-18 19:34:05 +03:00
parent 6135b738ba
commit c270429c66
4 changed files with 25 additions and 3 deletions

View File

@@ -0,0 +1,10 @@
package _VisualDVM.ProjectData.SapforData.Arrays;
import com.google.gson.annotations.Expose;
import java.util.List;
public class ArrayLinkJson {
@Expose
public long id;
@Expose
public List<Long> links;
}

View File

@@ -0,0 +1,8 @@
package _VisualDVM.ProjectData.SapforData.Arrays;
import com.google.gson.annotations.Expose;
import java.util.List;
public class ArrayLinksJson {
@Expose
public List<ArrayLinkJson> allLinks;
}