mirror of
https://github.com/signalapp/Signal-Server
synced 2026-04-29 11:43:13 +01:00
21 lines
317 B
Java
21 lines
317 B
Java
package org.whispersystems.textsecuregcm.entities;
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
|
public class PreKeyStatus {
|
|
|
|
@JsonProperty
|
|
private int count;
|
|
|
|
public PreKeyStatus(int count) {
|
|
this.count = count;
|
|
}
|
|
|
|
public PreKeyStatus() {}
|
|
|
|
public int getCount() {
|
|
return count;
|
|
}
|
|
}
|