mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-13 02:21:14 +01:00
858c962dd0
- add some device and db independent model interfaces for activity samples - use these model interfaces where possible - chart activity does not do device dependent rendering anymore and uses normalized values for all devices - initial interface for daily summaries
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;
|
|
}
|