Skip to content
Snippets Groups Projects
SedentaryNotification.java 269 B
Newer Older
package com.example.notification;

/**
 * Created by pharmacy on 09/01/2018.
 */

public class SedentaryNotification implements Notification {

    public boolean send() {
        return false;
    }


    public boolean setParameters() {
        return false;
    }
}