mirror of
https://github.com/oxen-io/session-android.git
synced 2025-04-07 16:44:29 +00:00
19 lines
291 B
Java
19 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;
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|