1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-11-26 20:06:52 +01:00
Gadgetbridge/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/model/TimeStamped.java
2016-08-27 20:14:42 +02:00

9 lines
221 B
Java

package nodomain.freeyourgadget.gadgetbridge.model;
public interface TimeStamped {
/**
* Unix timestamp of the sample, i.e. the number of seconds since 1970-01-01 00:00:00 UTC.
*/
int getTimestamp();
}