Skip to content
Snippets Groups Projects
Notification.java 404 B
Newer Older
/**
 * Created by pharmacy on 09/01/2018.
 */

public interface Notification {

    //Used to send the notification - will call Android OS for this purpose

    //TBC used to alter alert type - audio, visual, haptic etc. May need separate methods for these
    public boolean setParameters();
}