mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-13 18:41:14 +01:00
15 lines
383 B
Java
15 lines
383 B
Java
|
package nodomain.freeyourgadget.gadgetbridge.model;
|
||
|
|
||
|
public class CalendarEventSpec {
|
||
|
public static final int TYPE_UNKNOWN = 0;
|
||
|
public static final int TYPE_SUNRISE = 1;
|
||
|
public static final int TYPE_SUNSET = 2;
|
||
|
|
||
|
public int type;
|
||
|
public long id;
|
||
|
public int timestamp;
|
||
|
public int durationInSeconds;
|
||
|
public String title;
|
||
|
public String description;
|
||
|
}
|