mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-14 11:01:06 +01:00
8 lines
156 B
Java
8 lines
156 B
Java
|
package nodomain.freeyourgadget.gadgetbridge.model;
|
||
|
|
||
|
public interface ItemWithDetails {
|
||
|
String getName();
|
||
|
String getDetails();
|
||
|
int getIcon();
|
||
|
}
|