mirror of
https://github.com/oxen-io/session-android.git
synced 2023-12-14 02:53:01 +01:00
18 lines
291 B
Java
18 lines
291 B
Java
package org.thoughtcrime.securesms.gcm;
|
|
|
|
import java.util.List;
|
|
|
|
public class GcmMessageResponse {
|
|
private List<String> success;
|
|
private List<String> failure;
|
|
|
|
public List<String> getSuccess() {
|
|
return success;
|
|
}
|
|
|
|
public List<String> getFailure() {
|
|
return failure;
|
|
}
|
|
|
|
|
|
}
|