1
2
3
4
5
6
7
8
9
10
11
package cn.flightfeather.thirdappmodule.util.photo;
 
/**
 * 图片上传完成接口
 */
public interface OnUpLoadListener {
 
    void onSuccess();
 
    void onFail();
}