2015-08-30 00:21:51 +02:00
|
|
|
package nodomain.freeyourgadget.gadgetbridge.model;
|
|
|
|
|
|
|
|
public interface ItemWithDetails {
|
|
|
|
String getName();
|
2015-09-24 14:45:21 +02:00
|
|
|
|
2015-08-30 00:21:51 +02:00
|
|
|
String getDetails();
|
2015-09-24 14:45:21 +02:00
|
|
|
|
2015-08-30 00:21:51 +02:00
|
|
|
int getIcon();
|
|
|
|
}
|