mirror of
https://github.com/AsamK/signal-cli.git
synced 2026-05-03 10:50:16 +00:00
18 lines
355 B
Java
18 lines
355 B
Java
package org.asamk.signal.json;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
|
class JsonSyncReadMessage {
|
|
|
|
@JsonProperty
|
|
final String sender;
|
|
|
|
@JsonProperty
|
|
final long timestamp;
|
|
|
|
public JsonSyncReadMessage(final String sender, final long timestamp) {
|
|
this.sender = sender;
|
|
this.timestamp = timestamp;
|
|
}
|
|
}
|