Gadgetbridge/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/model/TimeStamped.java

9 lines
221 B
Java
Raw Normal View History

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