mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-13 10:31:03 +01:00
cb1ec5dccb
Now the UUID will be constructed like this: High 64bit 0x4742474200 | type Low 64bit id
15 lines
387 B
Java
15 lines
387 B
Java
package nodomain.freeyourgadget.gadgetbridge.model;
|
|
|
|
public class CalendarEventSpec {
|
|
public static final byte TYPE_UNKNOWN = 0;
|
|
public static final byte TYPE_SUNRISE = 1;
|
|
public static final byte TYPE_SUNSET = 2;
|
|
|
|
public byte type;
|
|
public long id;
|
|
public int timestamp;
|
|
public int durationInSeconds;
|
|
public String title;
|
|
public String description;
|
|
}
|