7 lines
130 B
Java

package model;
public abstract class Item {
public abstract String getOverview();
public abstract String getDetails();
}