mirror of
https://github.com/AsamK/signal-cli
synced 2025-09-05 13:40:38 +00:00
17 lines
355 B
Java
17 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;
|
|
}
|
|
}
|