mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-02-20 17:57:29 +00:00
13 lines
174 B
Java
13 lines
174 B
Java
package org.whispersystems.textsecure.push;
|
|
|
|
public class PreKeyStatus {
|
|
|
|
private int count;
|
|
|
|
public PreKeyStatus() {}
|
|
|
|
public int getCount() {
|
|
return count;
|
|
}
|
|
}
|