package ai;
|
|
import foundation.json.IJSONProvider;
|
import foundation.json.IJSONWriter;
|
|
public class AIResult implements IJSONProvider {
|
private String content;
|
|
public AIResult(String jsonContent) {
|
this.content = jsonContent;
|
}
|
|
@Override
|
public void writeJSON(IJSONWriter writer) {
|
writer.writeJSON(content);
|
}
|
|
}
|