agent-bigo/app/src/main/java/com/example/studyapp/request/ScriptResultRequest.java

19 lines
387 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.example.studyapp.request;
// 这是发送到服务端的请求体JSON 格式)
public class ScriptResultRequest {
private String result;
public ScriptResultRequest(String result) {
this.result = result;
}
public String getResult() {
return result;
}
public void setResult(String result) {
this.result = result;
}
}