Transférer les fichiers vers 'src/JsonInspector'

This commit is contained in:
2023-01-15 18:26:04 +01:00
parent d8e3440fb7
commit 9fe24c2f98
3 changed files with 127 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
package JsonInspector;
public class Other {
String value;
public Other(String value) {
this.value = value;
}
@Override
public String toString() {
return value;
}
}