AndroidAPS/app/src/main/java/info/nightscout/androidaps/events/EventRefreshOverview.java

14 lines
243 B
Java
Raw Normal View History

2017-06-16 08:37:07 +02:00
package info.nightscout.androidaps.events;
/**
* Created by mike on 16.06.2017.
*/
public class EventRefreshOverview extends Event {
2017-06-16 08:37:07 +02:00
public String from;
public EventRefreshOverview(String from) {
this.from = from;
}
}