2025-09-17 14:21:56 +03:00
|
|
|
package _VisualDVM.ComponentsServer.Component.Json;
|
|
|
|
|
import com.google.gson.annotations.Expose;
|
|
|
|
|
public class VersionInfo_json {
|
|
|
|
|
@Expose
|
|
|
|
|
public int version;
|
|
|
|
|
@Expose
|
2025-09-18 21:13:08 +03:00
|
|
|
public String build_date;
|
|
|
|
|
@Expose
|
|
|
|
|
public String build_time;
|
2025-09-17 14:21:56 +03:00
|
|
|
}
|