You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
666 B
31 lines
666 B
/**
|
|
* DailyReminderInfo.java
|
|
*
|
|
* Data class representing a daily reminder configuration
|
|
* and its current state.
|
|
*
|
|
* @author Matthew Raymer
|
|
* @version 1.0.0
|
|
*/
|
|
|
|
package com.timesafari.dailynotification;
|
|
|
|
/**
|
|
* Information about a scheduled daily reminder
|
|
*/
|
|
public class DailyReminderInfo {
|
|
public String id;
|
|
public String title;
|
|
public String body;
|
|
public String time;
|
|
public boolean sound;
|
|
public boolean vibration;
|
|
public String priority;
|
|
public boolean repeatDaily;
|
|
public String timezone;
|
|
public boolean isScheduled;
|
|
public long nextTriggerTime;
|
|
public long createdAt;
|
|
public long lastTriggered;
|
|
}
|
|
|
|
|