14 lines
262 B
Java
14 lines
262 B
Java
|
package info.nightscout.androidaps.interfaces;
|
||
|
|
||
|
import android.support.annotation.Nullable;
|
||
|
|
||
|
import info.nightscout.client.data.NSProfile;
|
||
|
|
||
|
/**
|
||
|
* Created by mike on 14.06.2016.
|
||
|
*/
|
||
|
public interface ProfileInterface {
|
||
|
@Nullable
|
||
|
NSProfile getProfile();
|
||
|
}
|