10 lines
170 B
Plaintext
10 lines
170 B
Plaintext
package com.ifish.jpush.common.resp;
|
|
|
|
import com.google.gson.annotations.Expose;
|
|
|
|
public class BooleanResult extends DefaultResult {
|
|
|
|
@Expose public boolean result;
|
|
|
|
}
|