2016-06-05 14:53:03 +02:00
|
|
|
package info.nightscout.androidaps.events;
|
|
|
|
|
2017-10-21 16:36:46 +02:00
|
|
|
import android.support.annotation.Nullable;
|
|
|
|
|
|
|
|
import info.nightscout.androidaps.db.BgReading;
|
|
|
|
|
2016-06-05 14:53:03 +02:00
|
|
|
/**
|
|
|
|
* Created by mike on 05.06.2016.
|
|
|
|
*/
|
2017-10-14 16:19:36 +02:00
|
|
|
public class EventNewBG extends EventLoop {
|
2017-10-21 16:36:46 +02:00
|
|
|
@Nullable
|
|
|
|
public final BgReading bgReading;
|
|
|
|
|
2018-03-20 19:05:12 +01:00
|
|
|
public EventNewBG(BgReading bgReading) {
|
2017-10-21 16:36:46 +02:00
|
|
|
this.bgReading = bgReading;
|
|
|
|
}
|
2016-06-05 14:53:03 +02:00
|
|
|
}
|