Files
SAE32_2022/src/fr/sae/JSonInspector/Storage/Other.java

15 lines
222 B
Java
Raw Normal View History

2023-01-15 20:37:28 +01:00
package fr.sae.JSonInspector.Storage;
2023-01-15 20:08:18 +01:00
public class Other {
String value;
public Other(String value) {
this.value = value;
}
@Override
public String toString() {
return value;
}
}