14 lines
229 B
Java
14 lines
229 B
Java
|
package info.nightscout.androidaps.events;
|
||
|
|
||
|
/**
|
||
|
* Created by mike on 16.06.2017.
|
||
|
*/
|
||
|
|
||
|
public class EventRefreshOverview {
|
||
|
public String from;
|
||
|
|
||
|
public EventRefreshOverview(String from) {
|
||
|
this.from = from;
|
||
|
}
|
||
|
}
|