Added Java files

This commit is contained in:
Yorick
2015-02-10 12:16:44 +00:00
parent 5ae6465cc9
commit 14855f938d
4 changed files with 62 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
public class Event
{
private int startTime;
private int endTime;
private Artist artist;
private String description;
private int id;
public Event()
{
}
}