2016-06-05 01:40:35 +02:00
|
|
|
package info.nightscout.androidaps.events;
|
|
|
|
|
2017-10-21 16:36:46 +02:00
|
|
|
import android.support.annotation.Nullable;
|
|
|
|
|
2018-04-05 09:39:18 +02:00
|
|
|
import info.nightscout.androidaps.plugins.Treatments.Treatment;
|
2017-10-21 16:36:46 +02:00
|
|
|
|
2016-06-05 01:40:35 +02:00
|
|
|
/**
|
|
|
|
* Created by mike on 04.06.2016.
|
|
|
|
*/
|
2017-10-14 16:19:36 +02:00
|
|
|
public class EventTreatmentChange extends EventLoop {
|
2017-10-21 16:36:46 +02:00
|
|
|
@Nullable
|
|
|
|
public final Treatment treatment;
|
|
|
|
|
|
|
|
public EventTreatmentChange(Treatment treatment) {
|
|
|
|
this.treatment = treatment;
|
|
|
|
}
|
2016-06-05 01:40:35 +02:00
|
|
|
}
|