diff options
Diffstat (limited to 'src/uk/org/ury/show/ShowItem.java')
-rw-r--r-- | src/uk/org/ury/show/ShowItem.java | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/uk/org/ury/show/ShowItem.java b/src/uk/org/ury/show/ShowItem.java new file mode 100644 index 0000000..be65c80 --- /dev/null +++ b/src/uk/org/ury/show/ShowItem.java @@ -0,0 +1,25 @@ +/** + * + */ +package uk.org.ury.show; + + +import java.util.Map; + +import uk.org.ury.database.DatabaseItem; + + +/** + * An item in the show database. + * + * @author Matt Windsor + */ + +public class ShowItem extends DatabaseItem<ShowItemProperty, String> +{ + public + ShowItem (Map<ShowItemProperty, String> properties) + { + super (properties); + } +} |