mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-13 10:31:03 +01:00
9 lines
181 B
Java
9 lines
181 B
Java
|
package nodomain.freeyourgadget.gadgetbridge.model;
|
||
|
|
||
|
public interface TimeStamped {
|
||
|
/**
|
||
|
* Timestamp of the sample, resolution is seconds!
|
||
|
*/
|
||
|
int getTimestamp();
|
||
|
}
|