2025-02-26 21:39:26 +03:00
|
|
|
package com.example.notifyservice;
|
|
|
|
|
2025-02-28 23:41:43 +03:00
|
|
|
import org.json.JSONObject;
|
|
|
|
|
2025-02-26 21:39:26 +03:00
|
|
|
public interface PostRequestCallback {
|
2025-02-28 23:41:43 +03:00
|
|
|
void onPostResponse(JSONObject result);
|
2025-02-26 21:39:26 +03:00
|
|
|
}
|