mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-27 17:11:39 +01:00
17 lines
379 B
Java
17 lines
379 B
Java
|
package nodomain.freeyourgadget.gadgetbridge.database;
|
||
|
|
||
|
/**
|
||
|
* Contains the configuration used for particular activity samples.
|
||
|
*/
|
||
|
public class UsedConfiguration {
|
||
|
String fwVersion;
|
||
|
String userName;
|
||
|
short userWeight;
|
||
|
short userSize;
|
||
|
// ...
|
||
|
int usedFrom; // timestamp
|
||
|
int usedUntil; // timestamp
|
||
|
short sleepGoal; // minutes
|
||
|
short stepsGoal;
|
||
|
}
|