mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-26 20:06:52 +01:00
9 lines
221 B
Java
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();
|
|
}
|