16 lines
324 B
Java
16 lines
324 B
Java
package info.nightscout.androidaps.interfaces;
|
|
|
|
import android.support.annotation.Nullable;
|
|
|
|
import info.nightscout.androidaps.data.ProfileStore;
|
|
|
|
/**
|
|
* Created by mike on 14.06.2016.
|
|
*/
|
|
public interface ProfileInterface {
|
|
@Nullable
|
|
ProfileStore getProfile();
|
|
String getUnits();
|
|
String getProfileName();
|
|
}
|