7 lines
150 B
Java
7 lines
150 B
Java
package com.example.notifyservice;
|
|
|
|
import org.json.JSONObject;
|
|
|
|
public interface PostRequestCallback {
|
|
void onPostResponse(JSONObject result);
|
|
}
|