2016-06-14 23:45:55 +02:00
|
|
|
package info.nightscout.androidaps.interfaces;
|
|
|
|
|
2019-05-16 13:57:37 +02:00
|
|
|
import androidx.annotation.Nullable;
|
2016-06-14 23:45:55 +02:00
|
|
|
|
2017-06-02 10:25:49 +02:00
|
|
|
import info.nightscout.androidaps.data.ProfileStore;
|
2016-06-14 23:45:55 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Created by mike on 14.06.2016.
|
|
|
|
*/
|
|
|
|
public interface ProfileInterface {
|
|
|
|
@Nullable
|
2017-06-02 10:25:49 +02:00
|
|
|
ProfileStore getProfile();
|
|
|
|
String getProfileName();
|
2016-06-14 23:45:55 +02:00
|
|
|
}
|