package model;

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